Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flatpak-qt-creator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
b692c137
Commit
b692c137
authored
Feb 29, 2016
by
Eike Ziller
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/4.0'
Change-Id: I108ad07980360acfdce523d6674b2480a9b027e8
parents
2d7f9c56
4b30b30d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
34 deletions
+35
-34
src/plugins/cppeditor/CppEditor.mimetypes.xml
src/plugins/cppeditor/CppEditor.mimetypes.xml
+21
-21
src/plugins/projectexplorer/projectexplorer.cpp
src/plugins/projectexplorer/projectexplorer.cpp
+5
-4
src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp
...gins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp
+1
-1
src/plugins/qmljstools/QmlJSTools.mimetypes.xml
src/plugins/qmljstools/QmlJSTools.mimetypes.xml
+6
-6
tests/auto/mapreduce/mapreduce.pro
tests/auto/mapreduce/mapreduce.pro
+1
-1
tests/auto/runextensions/runextensions.pro
tests/auto/runextensions/runextensions.pro
+1
-1
No files found.
src/plugins/cppeditor/CppEditor.mimetypes.xml
View file @
b692c137
...
...
@@ -4,7 +4,7 @@
<comment>
C source code
</comment>
<sub-class-of
type=
"text/plain"
/>
<alias
type=
"text/x-c"
/>
<glob
pattern=
"*.c"
case-sensitive=
"true"
/>
<glob
pattern=
"*.c"
case-sensitive=
"true"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"text/vnd.nvidia.cuda.csrc"
>
...
...
@@ -25,14 +25,14 @@
<mime-type
type=
"text/x-c++hdr"
>
<sub-class-of
type=
"text/x-chdr"
/>
<comment>
C++ header
</comment>
<glob
pattern=
"*.hh"
/>
<glob
pattern=
"*.hxx"
/>
<glob
pattern=
"*.h++"
/>
<glob
pattern=
"*.hpp"
/>
<glob
pattern=
"*.hp"
/>
<glob
pattern=
"*.hh"
weight=
"70"
/>
<glob
pattern=
"*.hxx"
weight=
"70"
/>
<glob
pattern=
"*.h++"
weight=
"70"
/>
<glob
pattern=
"*.hpp"
weight=
"70"
/>
<glob
pattern=
"*.hp"
weight=
"70"
/>
<!-- Additions to freedesktop: -->
<glob
pattern=
"*.h"
/>
<glob
pattern=
"*.H"
/>
<glob
pattern=
"*.h"
weight=
"70"
/>
<glob
pattern=
"*.H"
weight=
"70"
/>
<!-- Find include guards of header files without extension, for
example, STL ones like <string>. Those can have a big initial
comment exceeding 1000 chars, though. -->
...
...
@@ -47,19 +47,19 @@
<comment>
C++ source code
</comment>
<sub-class-of
type=
"text/x-csrc"
/>
<comment>
C++ source code
</comment>
<glob
pattern=
"*.cpp"
/>
<glob
pattern=
"*.cxx"
/>
<glob
pattern=
"*.cc"
/>
<glob
pattern=
"*.C"
case-sensitive=
"true"
/>
<glob
pattern=
"*.c++"
/>
<glob
pattern=
"*.cpp"
weight=
"70"
/>
<glob
pattern=
"*.cxx"
weight=
"70"
/>
<glob
pattern=
"*.cc"
weight=
"70"
/>
<glob
pattern=
"*.C"
case-sensitive=
"true"
weight=
"70"
/>
<glob
pattern=
"*.c++"
weight=
"70"
/>
<!-- Additions to freedesktop: -->
<glob
pattern=
"*.cp"
/>
<glob
pattern=
"*.inl"
/>
<glob
pattern=
"*.qdoc"
/>
<glob
pattern=
"*.tcc"
/>
<glob
pattern=
"*.tpp"
/>
<glob
pattern=
"*.t++"
/>
<glob
pattern=
"*.txx"
/>
<glob
pattern=
"*.cp"
weight=
"70"
/>
<glob
pattern=
"*.inl"
weight=
"70"
/>
<glob
pattern=
"*.qdoc"
weight=
"70"
/>
<glob
pattern=
"*.tcc"
weight=
"70"
/>
<glob
pattern=
"*.tpp"
weight=
"70"
/>
<glob
pattern=
"*.t++"
weight=
"70"
/>
<glob
pattern=
"*.txx"
weight=
"70"
/>
<magic
priority=
"30"
>
<match
value=
"-*- C++ -*-"
type=
"string"
offset=
"0:30"
/>
</magic>
...
...
@@ -71,7 +71,7 @@
<expanded-acronym>
Qt Meta Object Compiler
</expanded-acronym>
<!-- Fix to freedesktop: moc is C++ source -->
<sub-class-of
type=
"text/x-c++src"
/>
<glob
pattern=
"*.moc"
/>
<glob
pattern=
"*.moc"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"text/x-objc++src"
>
...
...
src/plugins/projectexplorer/projectexplorer.cpp
View file @
b692c137
...
...
@@ -129,7 +129,6 @@
#include <utils/stringutils.h>
#include <QtPlugin>
#include <QDebug>
#include <QFileInfo>
#include <QSettings>
...
...
@@ -3028,7 +3027,9 @@ void ProjectExplorerPluginPrivate::addNewFile()
}
ICore
::
showNewItemDialog
(
tr
(
"New File"
,
"Title of dialog"
),
Utils
::
filtered
(
IWizardFactory
::
allWizardFactories
(),
[](
IWizardFactory
*
f
)
{
return
f
->
supportedPlatforms
().
isEmpty
();
}),
[](
IWizardFactory
*
f
)
{
return
f
->
supportedProjectTypes
().
isEmpty
();
}),
location
,
map
);
}
...
...
@@ -3054,8 +3055,8 @@ void ProjectExplorerPluginPrivate::addNewSubproject()
ICore
::
showNewItemDialog
(
tr
(
"New Subproject"
,
"Title of dialog"
),
Utils
::
filtered
(
IWizardFactory
::
allWizardFactories
(),
[
projectType
](
IWizardFactory
*
f
)
{
return
projectType
.
isValid
()
?
f
->
supportedP
latform
s
().
contains
(
projectType
)
:
!
f
->
supportedP
latform
s
().
isEmpty
();
}),
return
projectType
.
isValid
()
?
f
->
supportedP
rojectType
s
().
contains
(
projectType
)
:
!
f
->
supportedP
rojectType
s
().
isEmpty
();
}),
location
,
map
);
}
}
...
...
src/plugins/qmakeprojectmanager/wizards/subdirsprojectwizard.cpp
View file @
b692c137
...
...
@@ -93,7 +93,7 @@ bool SubdirsProjectWizard::postGenerateFiles(const QWizard *w, const Core::Gener
IWizardFactory
::
requestNewItemDialog
(
tr
(
"New Subproject"
,
"Title of dialog"
),
Utils
::
filtered
(
Core
::
IWizardFactory
::
allWizardFactories
(),
[](
Core
::
IWizardFactory
*
f
)
{
return
f
->
supportedP
latform
s
().
contains
(
Constants
::
QMAKEPROJECT_ID
);
return
f
->
supportedP
rojectType
s
().
contains
(
Constants
::
QMAKEPROJECT_ID
);
}),
wizard
->
parameters
().
projectPath
(),
map
);
}
else
{
...
...
src/plugins/qmljstools/QmlJSTools.mimetypes.xml
View file @
b692c137
...
...
@@ -5,35 +5,35 @@
<!-- sub class is missing in the freedesktop.org definition -->
<sub-class-of
type=
"text/plain"
/>
<comment>
QML file
</comment>
<glob
pattern=
"*.qml"
/>
<glob
pattern=
"*.qml"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"application/x-qt.qbs+qml"
>
<alias
type=
"text/x-qt.qbs+qml"
/>
<sub-class-of
type=
"text/x-qml"
/>
<comment>
Qt Build Suite file
</comment>
<glob
pattern=
"*.qbs"
/>
<glob
pattern=
"*.qbs"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"application/x-qt.ui+qml"
>
<alias
type=
"text/x-qt.ui+qml"
/>
<sub-class-of
type=
"text/x-qml"
/>
<comment>
QtQuick Designer ui file
</comment>
<glob
pattern=
"*.ui.qml"
/>
<glob
pattern=
"*.ui.qml"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"application/x-qmlproject"
>
<alias
type=
"text/x-qmlproject"
/>
<sub-class-of
type=
"text/x-qml"
/>
<comment>
Qt Creator Qt UI project file
</comment>
<glob
pattern=
"*.qmlproject"
/>
<glob
pattern=
"*.qmlproject"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"application/x-qt.meta-info+qml"
>
<alias
type=
"text/x-qt.meta-info+qml"
/>
<sub-class-of
type=
"text/x-qml"
/>
<comment>
QML file
</comment>
<glob
pattern=
"*.qmltypes"
/>
<glob
pattern=
"*.qmltypes"
weight=
"70"
/>
</mime-type>
<mime-type
type=
"application/json"
>
<sub-class-of
type=
"text/plain"
/>
<comment>
JSON file
</comment>
<glob
pattern=
"*.json"
/>
<glob
pattern=
"*.json"
weight=
"70"
/>
</mime-type>
</mime-info>
tests/auto/mapreduce/mapreduce.pro
View file @
b692c137
...
...
@@ -3,4 +3,4 @@ include(../qttest.pri)
#
Input
SOURCES
+=
tst_mapreduce
.
cpp
HEADER
S
+=
$$
IDE_SOURCE_TREE
/
src
/
libs
/
utils
/
mapreduce
.
h
OTHER_FILE
S
+=
$$
IDE_SOURCE_TREE
/
src
/
libs
/
utils
/
mapreduce
.
h
tests/auto/runextensions/runextensions.pro
View file @
b692c137
...
...
@@ -3,4 +3,4 @@ include(../qttest.pri)
#
Input
SOURCES
+=
tst_runextensions
.
cpp
HEADER
S
+=
$$
IDE_SOURCE_TREE
/
src
/
libs
/
utils
/
runextensions
.
h
OTHER_FILE
S
+=
$$
IDE_SOURCE_TREE
/
src
/
libs
/
utils
/
runextensions
.
h
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment