aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-12-11 09:28:21 +0100
committerEike Ziller <eike.ziller@qt.io>2023-12-11 09:28:21 +0100
commit57d4ea4dccffa3ff110037574efb1c5d80df4a02 (patch)
tree8f4476ab6a7034ff4a6bcc57c470a214ef37d6f9
parent7ec55f89f1193794eab4fb283e38bdc1d9c3b0dc (diff)
parentee75c7276b9ba9fc01f0182d45547038567b6e93 (diff)
Merge remote-tracking branch 'origin/12.0'
Conflicts: src/plugins/designer/formeditor.cpp src/plugins/git/gitplugin.cpp Change-Id: I554a844fab4c55249a00f394f9ba174c7548dbbe
-rw-r--r--src/plugins/clangformat/clangformatbaseindenter.cpp6
-rw-r--r--src/plugins/clangformat/tests/clangformat-test.cpp16
-rw-r--r--src/plugins/clangformat/tests/clangformat-test.h1
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildstep.cpp1
-rw-r--r--src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp4
-rw-r--r--src/plugins/cppeditor/cppmodelmanager.cpp5
-rw-r--r--src/plugins/designer/formeditor.cpp148
-rw-r--r--src/plugins/qbsprojectmanager/qbsproject.cpp2
-rw-r--r--src/plugins/qbsprojectmanager/qbsprojectparser.h3
m---------src/shared/qbs0
-rw-r--r--tests/system/suite_general/tst_openqt_creator/test.py2
-rw-r--r--tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv762
12 files changed, 170 insertions, 780 deletions
diff --git a/src/plugins/clangformat/clangformatbaseindenter.cpp b/src/plugins/clangformat/clangformatbaseindenter.cpp
index 6903491fb0c..605ed2801c0 100644
--- a/src/plugins/clangformat/clangformatbaseindenter.cpp
+++ b/src/plugins/clangformat/clangformatbaseindenter.cpp
@@ -316,8 +316,10 @@ int forceIndentWithExtraText(QByteArray &buffer,
// A comment at the end of the line appears to prevent clang-format from removing line breaks.
if (dummyText == "/*//*/" || dummyText.isEmpty()) {
if (block.previous().isValid()) {
- const int prevEndOffset = Utils::Text::utf8NthLineOffset(block.document(), buffer,
- block.blockNumber()) + block.previous().text().length();
+ const int prevEndOffset = Utils::Text::utf8NthLineOffset(block.document(),
+ buffer,
+ block.blockNumber())
+ + block.previous().text().toUtf8().length();
buffer.insert(prevEndOffset, " //");
extraLength += 3;
}
diff --git a/src/plugins/clangformat/tests/clangformat-test.cpp b/src/plugins/clangformat/tests/clangformat-test.cpp
index 80d2cc4da90..a4a85cf9065 100644
--- a/src/plugins/clangformat/tests/clangformat-test.cpp
+++ b/src/plugins/clangformat/tests/clangformat-test.cpp
@@ -730,4 +730,20 @@ void ClangFormatTest::testIndentCommentOnNewLine()
}));
}
+void ClangFormatTest::testUtf8SymbolLine()
+{
+ insertLines({"int main()",
+ "{",
+ " cout << \"ä\" << endl;",
+ " return 0;",
+ "}"});
+ m_indenter->indent(*m_cursor, QChar::Null, TextEditor::TabSettings());
+ QCOMPARE(documentLines(),
+ (std::vector<QString>{"int main()",
+ "{",
+ " cout << \"ä\" << endl;",
+ " return 0;",
+ "}"}));
+}
+
} // namespace ClangFormat::Internal
diff --git a/src/plugins/clangformat/tests/clangformat-test.h b/src/plugins/clangformat/tests/clangformat-test.h
index 494ebc85daf..d1dba9a13f2 100644
--- a/src/plugins/clangformat/tests/clangformat-test.h
+++ b/src/plugins/clangformat/tests/clangformat-test.h
@@ -91,6 +91,7 @@ private slots:
void testIndentInitializeVector();
void testIndentFunctionArgumentOnNewLine();
void testIndentCommentOnNewLine();
+ void testUtf8SymbolLine();
private:
void insertLines(const std::vector<QString> &lines);
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
index 8bd3b378499..92e1dcfa4d0 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
@@ -230,6 +230,7 @@ CMakeBuildStep::CMakeBuildStep(BuildStepList *bsl, Id id) :
stagingDir.setSettingsKey(STAGING_DIR_KEY);
stagingDir.setLabelText(Tr::tr("Staging directory:"));
stagingDir.setDefaultValue(initialStagingDir(kit()));
+ stagingDir.setExpectedKind(PathChooser::Kind::Directory);
Kit *kit = buildConfiguration()->kit();
if (CMakeBuildConfiguration::isIos(kit)) {
diff --git a/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp b/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp
index 6dc754d2bed..2f7313c4a45 100644
--- a/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakefilecompletionassist.cpp
@@ -314,7 +314,9 @@ static void updateCMakeConfigurationWithLocalData(CMakeConfig &cmakeCache,
return var == "CMAKE_PREFIX_PATH" || var == "CMAKE_MODULE_PATH";
};
- const FilePath projectDir = ProjectTree::currentBuildSystem()->projectDirectory();
+ const FilePath projectDir = ProjectTree::currentBuildSystem()
+ ? ProjectTree::currentBuildSystem()->projectDirectory()
+ : currentDir;
auto updateDirVariables = [currentDir, projectDir, cmakeCache](QByteArray &value) {
value.replace("${CMAKE_CURRENT_SOURCE_DIR}", currentDir.path().toUtf8());
value.replace("${CMAKE_CURRENT_LIST_DIR}", currentDir.path().toUtf8());
diff --git a/src/plugins/cppeditor/cppmodelmanager.cpp b/src/plugins/cppeditor/cppmodelmanager.cpp
index 97c3523925b..14f5e46bead 100644
--- a/src/plugins/cppeditor/cppmodelmanager.cpp
+++ b/src/plugins/cppeditor/cppmodelmanager.cpp
@@ -1653,7 +1653,10 @@ QList<ProjectPart::ConstPtr> CppModelManager::projectPart(const FilePath &fileNa
}
const FilePath canonicalPath = fileName.canonicalPath();
QWriteLocker locker(&d->m_projectLock);
- auto it = d->m_fileToProjectParts.insert(fileName, d->m_fileToProjectParts.value(canonicalPath));
+ const auto it = d->m_fileToProjectParts.constFind(canonicalPath);
+ if (it == d->m_fileToProjectParts.constEnd())
+ return {};
+ d->m_fileToProjectParts.insert(fileName, it.value());
return it.value();
}
diff --git a/src/plugins/designer/formeditor.cpp b/src/plugins/designer/formeditor.cpp
index 57bb78f5a5a..53e40362988 100644
--- a/src/plugins/designer/formeditor.cpp
+++ b/src/plugins/designer/formeditor.cpp
@@ -35,14 +35,15 @@
#include <aggregation/aggregate.h>
-#include <QDesignerFormEditorPluginInterface>
-#include <QDesignerFormEditorInterface>
+#include <abstractobjectinspector.h>
+#include <QDesignerActionEditorInterface>
#include <QDesignerComponents>
+#include <QDesignerFormEditorInterface>
+#include <QDesignerFormEditorPluginInterface>
#include <QDesignerFormWindowManagerInterface>
-#include <QDesignerWidgetBoxInterface>
-#include <abstractobjectinspector.h>
+#include <QDesignerFormWindowToolInterface>
#include <QDesignerPropertyEditorInterface>
-#include <QDesignerActionEditorInterface>
+#include <QDesignerWidgetBoxInterface>
#include <QAction>
#include <QActionGroup>
@@ -131,6 +132,13 @@ public:
}
};
+class ToolData
+{
+public:
+ int index;
+ QByteArray className;
+};
+
// FormEditorData
class FormEditorData : public QObject
@@ -139,8 +147,8 @@ public:
FormEditorData();
~FormEditorData();
- void activateEditMode(int id);
- void toolChanged(int);
+ void activateEditMode(const ToolData &toolData);
+ void toolChanged(QDesignerFormWindowInterface *form, int);
void print();
void setPreviewMenuEnabled(bool e);
void updateShortcut(Command *command);
@@ -168,6 +176,7 @@ public:
const QString &actionName,
Id id,
int toolNumber,
+ const QByteArray &toolClassName,
const QString &iconName = QString(),
const QString &keySequence = QString());
Command *addToolAction(QAction *a,
@@ -528,30 +537,53 @@ void FormEditorData::setupActions()
m_actionGroupEditMode = new QActionGroup(this);
m_actionGroupEditMode->setExclusive(true);
- QObject::connect(m_actionGroupEditMode, &QActionGroup::triggered, this,
- [this](QAction *a) { activateEditMode(a->data().toInt()); });
+ QObject::connect(m_actionGroupEditMode, &QActionGroup::triggered, this, [this](QAction *a) {
+ activateEditMode(a->data().value<ToolData>());
+ });
medit->addSeparator(m_contexts, Core::Constants::G_EDIT_OTHER);
m_toolActionIds.push_back("FormEditor.WidgetEditor");
- createEditModeAction(m_actionGroupEditMode, m_contexts, medit,
- Tr::tr("Edit Widgets"), m_toolActionIds.back(),
- EditModeWidgetEditor, "widgettool.png", Tr::tr("F3"));
+ createEditModeAction(m_actionGroupEditMode,
+ m_contexts,
+ medit,
+ Tr::tr("Edit Widgets"),
+ m_toolActionIds.back(),
+ EditModeWidgetEditor,
+ "qdesigner_internal::WidgetEditorTool",
+ "widgettool.png",
+ Tr::tr("F3"));
m_toolActionIds.push_back("FormEditor.SignalsSlotsEditor");
- createEditModeAction(m_actionGroupEditMode, m_contexts, medit,
- Tr::tr("Edit Signals/Slots"), m_toolActionIds.back(),
- EditModeSignalsSlotEditor, "signalslottool.png", Tr::tr("F4"));
+ createEditModeAction(m_actionGroupEditMode,
+ m_contexts,
+ medit,
+ Tr::tr("Edit Signals/Slots"),
+ m_toolActionIds.back(),
+ EditModeSignalsSlotEditor,
+ "qdesigner_internal::SignalSlotEditorTool",
+ "signalslottool.png",
+ Tr::tr("F4"));
m_toolActionIds.push_back("FormEditor.BuddyEditor");
- createEditModeAction(m_actionGroupEditMode, m_contexts, medit,
- Tr::tr("Edit Buddies"), m_toolActionIds.back(),
- EditModeBuddyEditor, "buddytool.png");
+ createEditModeAction(m_actionGroupEditMode,
+ m_contexts,
+ medit,
+ Tr::tr("Edit Buddies"),
+ m_toolActionIds.back(),
+ EditModeBuddyEditor,
+ "qdesigner_internal::BuddyEditorTool",
+ "buddytool.png");
m_toolActionIds.push_back("FormEditor.TabOrderEditor");
- createEditModeAction(m_actionGroupEditMode, m_contexts, medit,
- Tr::tr("Edit Tab Order"), m_toolActionIds.back(),
- EditModeTabOrderEditor, "tabordertool.png");
+ createEditModeAction(m_actionGroupEditMode,
+ m_contexts,
+ medit,
+ Tr::tr("Edit Tab Order"),
+ m_toolActionIds.back(),
+ EditModeTabOrderEditor,
+ "qdesigner_internal::TabOrderEditorTool",
+ "tabordertool.png");
//tool actions
m_toolActionIds.push_back("FormEditor.LayoutHorizontally");
@@ -721,13 +753,14 @@ void FormEditorData::bindShortcut(Command *command, QAction *action)
// Create an action to activate a designer tool
QAction *FormEditorData::createEditModeAction(QActionGroup *ag,
- const Context &context,
- ActionContainer *medit,
- const QString &actionName,
- Id id,
- int toolNumber,
- const QString &iconName,
- const QString &keySequence)
+ const Context &context,
+ ActionContainer *medit,
+ const QString &actionName,
+ Id id,
+ int toolNumber,
+ const QByteArray &toolClassName,
+ const QString &iconName,
+ const QString &keySequence)
{
auto rc = new QAction(actionName, ag);
rc->setCheckable(true);
@@ -739,7 +772,7 @@ QAction *FormEditorData::createEditModeAction(QActionGroup *ag,
command->setDefaultKeySequence(QKeySequence(keySequence));
bindShortcut(command, rc);
medit->addAction(command, Core::Constants::G_EDIT_OTHER);
- rc->setData(toolNumber);
+ rc->setData(QVariant::fromValue(ToolData{toolNumber, toolClassName}));
ag->addAction(rc);
return rc;
}
@@ -767,8 +800,9 @@ IEditor *FormEditorData::createEditor()
QDesignerFormWindowInterface *form = m_fwm->createFormWindow(nullptr);
QTC_ASSERT(form, return nullptr);
form->setPalette(Theme::initialPalette());
- connect(form, &QDesignerFormWindowInterface::toolChanged,
- this, &FormEditorData::toolChanged);
+ connect(form, &QDesignerFormWindowInterface::toolChanged, this, [this, form](int index) {
+ toolChanged(form, index);
+ });
auto widgetHost = new SharedTools::WidgetHost( /* parent */ nullptr, form);
FormWindowEditor *formWindowEditor = m_xmlEditorFactory->create(form);
@@ -820,26 +854,48 @@ void FormEditorData::updateShortcut(Command *command)
a->setShortcut(command->action()->shortcut());
}
-void FormEditorData::activateEditMode(int id)
+static void setTool(QDesignerFormWindowInterface *formWindow, const ToolData &toolData)
+{
+ // check for tool action with correct object name,
+ // otherwise fall back to index
+ if (!toolData.className.isEmpty()) {
+ const int toolCount = formWindow->toolCount();
+ for (int tool = 0; tool < toolCount; ++tool) {
+ if (formWindow->tool(tool)->metaObject()->className() == toolData.className) {
+ formWindow->setCurrentTool(tool);
+ return;
+ }
+ }
+ }
+ formWindow->setCurrentTool(toolData.index);
+}
+
+void FormEditorData::activateEditMode(const ToolData &toolData)
{
- if (const int count = m_fwm->formWindowCount())
- for (int i = 0; i < count; i++)
- m_fwm->formWindow(i)->setCurrentTool(id);
+ if (const int count = m_fwm->formWindowCount()) {
+ for (int i = 0; i < count; i++)
+ setTool(m_fwm->formWindow(i), toolData);
+ }
}
-void FormEditorData::toolChanged(int t)
+void FormEditorData::toolChanged(QDesignerFormWindowInterface *form, int t)
{
- typedef QList<QAction *> ActionList;
- if (const QAction *currentAction = m_actionGroupEditMode->checkedAction())
- if (currentAction->data().toInt() == t)
+ // check for action with correct object name,
+ // otherwise fall back to index
+ QDesignerFormWindowToolInterface *tool = form->tool(t);
+ const QList<QAction *> actions = m_actionGroupEditMode->actions();
+ QAction *candidateByIndex = nullptr;
+ for (QAction *action : actions) {
+ const auto toolData = action->data().value<ToolData>();
+ if (!toolData.className.isEmpty() && toolData.className == tool->metaObject()->className()) {
+ action->setChecked(true);
return;
- const ActionList actions = m_actionGroupEditMode->actions();
- const ActionList::const_iterator cend = actions.constEnd();
- for (ActionList::const_iterator it = actions.constBegin(); it != cend; ++it)
- if ( (*it)->data().toInt() == t) {
- (*it)->setChecked(true);
- break;
}
+ if (toolData.index == t)
+ candidateByIndex = action;
+ }
+ if (candidateByIndex)
+ candidateByIndex->setChecked(true);
}
void FormEditorData::print()
@@ -929,3 +985,5 @@ void addPluginPath(const QString &pluginPath)
} // namespace Internal
} // namespace Designer
+
+Q_DECLARE_METATYPE(Designer::Internal::ToolData)
diff --git a/src/plugins/qbsprojectmanager/qbsproject.cpp b/src/plugins/qbsprojectmanager/qbsproject.cpp
index 53cee96b20d..ba09e062c33 100644
--- a/src/plugins/qbsprojectmanager/qbsproject.cpp
+++ b/src/plugins/qbsprojectmanager/qbsproject.cpp
@@ -519,7 +519,7 @@ void QbsBuildSystem::handleQbsParsingDone(bool success)
m_qbsUpdateFutureInterface->reportCanceled();
}
- m_qbsProjectParser->deleteLater();
+ m_qbsProjectParser->deleteLaterSafely();
m_qbsProjectParser = nullptr;
m_qbsUpdateFutureInterface->reportFinished();
delete m_qbsUpdateFutureInterface;
diff --git a/src/plugins/qbsprojectmanager/qbsprojectparser.h b/src/plugins/qbsprojectmanager/qbsprojectparser.h
index 7b793fa5d24..454211b35f9 100644
--- a/src/plugins/qbsprojectmanager/qbsprojectparser.h
+++ b/src/plugins/qbsprojectmanager/qbsprojectparser.h
@@ -30,6 +30,9 @@ public:
void cancel();
Utils::Environment environment() const { return m_environment; }
+ // FIXME: Why on earth do we not own the FutureInterface?
+ void deleteLaterSafely() { m_fi = nullptr; deleteLater(); }
+
QbsSession *session() const { return m_session; }
QJsonObject projectData() const { return m_projectData; }
ErrorInfo error() const { return m_error; }
diff --git a/src/shared/qbs b/src/shared/qbs
-Subproject 36e230e0bafdbe11bd31bd294ae745403c553c7
+Subproject b1d6a0518a38bf37928233d31f764132081f85e
diff --git a/tests/system/suite_general/tst_openqt_creator/test.py b/tests/system/suite_general/tst_openqt_creator/test.py
index 8bdb82e4e53..c0cbc815a22 100644
--- a/tests/system/suite_general/tst_openqt_creator/test.py
+++ b/tests/system/suite_general/tst_openqt_creator/test.py
@@ -45,7 +45,7 @@ def main():
# Verify that qmljs.g is in the project even when we don't know where (QTCREATORBUG-17609)
selectFromLocator("p qmljs.g", "qmljs.g")
# Now check some basic lookups in the search box
- selectFromLocator(": qlist::qlist", "QList::QList")
+ selectFromLocator(": qlist", "QList")
test.compare(wordUnderCursor(waitForObject(":Qt Creator_CppEditor::Internal::CPPEditorWidget")), "QList")
invokeMenuItem("File", "Exit")
diff --git a/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv
index 662eb4fe255..1f8cfb5593d 100644
--- a/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv
+++ b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv
@@ -44,7 +44,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"qtcreatordata" "2"
"qtcreatordata.pri" "3"
"Sources" "2"
@@ -82,13 +81,10 @@
"glsl" "3"
"glsl_120.frag" "4"
"glsl_120.vert" "4"
-"glsl_120_common.glsl" "4"
"glsl_330.frag" "4"
"glsl_330.vert" "4"
-"glsl_330_common.glsl" "4"
"glsl_es_100.frag" "4"
"glsl_es_100.vert" "4"
-"glsl_es_100_common.glsl" "4"
"indexer_preincludes" "3"
"QtCore" "4"
"qconfig.h" "5"
@@ -97,32 +93,6 @@
"windows.h" "4"
"modeleditor" "3"
"standard.def" "4"
-"qml-type-descriptions" "3"
-"builtins.qmltypes" "4"
-"qbs-base.qmltypes" "4"
-"qbs-bundle.json" "4"
-"qbs.qmltypes" "4"
-"qmlproject-bundle.json" "4"
-"qmlproject.qmltypes" "4"
-"qmlruntime.qmltypes" "4"
-"qmltypes-bundle.json" "4"
-"qt-labs-folderlistmodel.qmltypes" "4"
-"qt-labs-gestures.qmltypes" "4"
-"qt-labs-particles.qmltypes" "4"
-"qt5QtQuick2-bundle.json" "4"
-"qtmobility-connectivity.qmltypes" "4"
-"qtmobility-contacts.qmltypes" "4"
-"qtmobility-feedback.qmltypes" "4"
-"qtmobility-gallery.qmltypes" "4"
-"qtmobility-location.qmltypes" "4"
-"qtmobility-messaging.qmltypes" "4"
-"qtmobility-organizer.qmltypes" "4"
-"qtmobility-publishsubscribe.qmltypes" "4"
-"qtmobility-sensors.qmltypes" "4"
-"qtmobility-serviceframework.qmltypes" "4"
-"qtmobility-systeminfo.qmltypes" "4"
-"qtmultimediakit.qmltypes" "4"
-"qtwebkit.qmltypes" "4"
"commands" "4"
"captureddatacommand.h" "5"
"changeauxiliarycommand.cpp" "5"
@@ -217,7 +187,6 @@
"propertyvaluecontainer.h" "5"
"reparentcontainer.cpp" "5"
"reparentcontainer.h" "5"
-"sharedmemory.h" "5"
"sharedmemory_qt.cpp" "5"
"sharedmemory_unix.cpp" "5"
"html" "4"
@@ -342,7 +311,6 @@
"qml2puppet" "4"
"editor3d" "5"
"qt5compat" "6"
-"qquick3darealight.cpp" "7"
"qquick3darealight_p.h" "7"
"camerageometry.cpp" "6"
"camerageometry.h" "6"
@@ -448,7 +416,6 @@
"qmlprivategate.cpp" "5"
"qmlprivategate.h" "5"
"qmlprivategate.pri" "5"
-"qmlprivategate_56.cpp" "5"
"types" "4"
"enumeration.h" "5"
"types.pri" "5"
@@ -585,7 +552,6 @@
"ToggleButton.qml" "7"
"ToolBarButton.qml" "7"
"Window.qml" "7"
-"qmlpuppet_utilities.pri" "4"
"qmldesigner" "3"
"itemLibraryQmlSources" "4"
"AddImport.qml" "5"
@@ -639,7 +605,6 @@
"down-arrow@2x.png" "8"
"expression.png" "8"
"expression@2x.png" "8"
-"icon-gradient-list.png" "8"
"icon_color_conical_gradient.png" "8"
"icon_color_gradient.png" "8"
"icon_color_none.png" "8"
@@ -933,7 +898,6 @@
"GridView.png" "5"
"Image.png" "5"
"InfoBanner.png" "5"
-"item-icon16.png" "5"
"Item.png" "5"
"ListButton.png" "5"
"ListDelegate.png" "5"
@@ -979,7 +943,6 @@
"styles" "3"
"creator-dark.xml" "4"
"dark.xml" "4"
-"default.xml" "4"
"default_classic.xml" "4"
"grayscale.xml" "4"
"inkpot.xml" "4"
@@ -994,8 +957,6 @@
"tpl_resources.qrc" "5"
"tpl_single.cpp" "5"
"tpl_single.h" "5"
-"tpl_widget.cpp" "5"
-"tpl_widget.h" "5"
"tpl_widget_include.pri" "5"
"tpl_widget_lib.pro" "5"
"wizards" "4"
@@ -1004,12 +965,8 @@
"catch2_tst.cpp" "7"
"googlecommon.js" "7"
"gtest_dependency.pri" "7"
-"tst.pro" "7"
-"tst.qbs" "7"
-"tst.txt" "7"
"tst_main.cpp" "7"
"tst_qml.tmpl" "7"
-"tst_src.cpp" "7"
"tst_src_gt.cpp" "7"
"autotest.png" "6"
"autotest@2x.png" "6"
@@ -1121,7 +1078,6 @@
"CMakeLists.txt" "7"
"lib.cpp" "7"
"lib.h" "7"
-"lib_global.h" "7"
"meson.build" "7"
"project.json" "7"
"project.pro" "7"
@@ -1190,7 +1146,6 @@
"widget" "7"
"main.pyproject" "8"
"wizard.json" "8"
-"main.pyproject" "7"
"main_empty.py" "7"
"main_mainwindow.py" "7"
"main_qtquick.py" "7"
@@ -1266,7 +1221,6 @@
"myplugin.cpp" "6"
"myplugin.h" "6"
"MyPlugin.json.in" "6"
-"myplugin_global.h" "6"
"mypluginconstants.h" "6"
"qtcreatorplugin.png" "6"
"qtcreatorplugin@2x.png" "6"
@@ -1276,11 +1230,9 @@
"themes" "3"
"dark.creatortheme" "4"
"default.creatortheme" "4"
-"design-light.creatortheme" "4"
"design.creatortheme" "4"
"flat-dark.creatortheme" "4"
"flat-light.creatortheme" "4"
-"flat.creatortheme" "4"
"Other files" "2"
"android" "3"
"sdk_definitions.json" "4"
@@ -1316,13 +1268,10 @@
"glsl" "3"
"glsl_120.frag" "4"
"glsl_120.vert" "4"
-"glsl_120_common.glsl" "4"
"glsl_330.frag" "4"
"glsl_330.vert" "4"
-"glsl_330_common.glsl" "4"
"glsl_es_100.frag" "4"
"glsl_es_100.vert" "4"
-"glsl_es_100_common.glsl" "4"
"indexer_preincludes" "3"
"QtCore" "4"
"qconfig.h" "5"
@@ -1331,32 +1280,6 @@
"windows.h" "4"
"modeleditor" "3"
"standard.def" "4"
-"qml-type-descriptions" "3"
-"builtins.qmltypes" "4"
-"qbs-base.qmltypes" "4"
-"qbs-bundle.json" "4"
-"qbs.qmltypes" "4"
-"qmlproject-bundle.json" "4"
-"qmlproject.qmltypes" "4"
-"qmlruntime.qmltypes" "4"
-"qmltypes-bundle.json" "4"
-"qt-labs-folderlistmodel.qmltypes" "4"
-"qt-labs-gestures.qmltypes" "4"
-"qt-labs-particles.qmltypes" "4"
-"qt5QtQuick2-bundle.json" "4"
-"qtmobility-connectivity.qmltypes" "4"
-"qtmobility-contacts.qmltypes" "4"
-"qtmobility-feedback.qmltypes" "4"
-"qtmobility-gallery.qmltypes" "4"
-"qtmobility-location.qmltypes" "4"
-"qtmobility-messaging.qmltypes" "4"
-"qtmobility-organizer.qmltypes" "4"
-"qtmobility-publishsubscribe.qmltypes" "4"
-"qtmobility-sensors.qmltypes" "4"
-"qtmobility-serviceframework.qmltypes" "4"
-"qtmobility-systeminfo.qmltypes" "4"
-"qtmultimediakit.qmltypes" "4"
-"qtwebkit.qmltypes" "4"
"commands" "4"
"captureddatacommand.h" "5"
"changeauxiliarycommand.cpp" "5"
@@ -1451,7 +1374,6 @@
"propertyvaluecontainer.h" "5"
"reparentcontainer.cpp" "5"
"reparentcontainer.h" "5"
-"sharedmemory.h" "5"
"sharedmemory_qt.cpp" "5"
"sharedmemory_unix.cpp" "5"
"html" "4"
@@ -1495,7 +1417,6 @@
"qml2puppet" "4"
"editor3d" "5"
"qt5compat" "6"
-"qquick3darealight.cpp" "7"
"qquick3darealight_p.h" "7"
"camerageometry.cpp" "6"
"camerageometry.h" "6"
@@ -1601,7 +1522,6 @@
"qmlprivategate.cpp" "5"
"qmlprivategate.h" "5"
"qmlprivategate.pri" "5"
-"qmlprivategate_56.cpp" "5"
"types" "4"
"enumeration.h" "5"
"types.pri" "5"
@@ -1738,7 +1658,6 @@
"ToggleButton.qml" "7"
"ToolBarButton.qml" "7"
"Window.qml" "7"
-"qmlpuppet_utilities.pri" "4"
"qmldesigner" "3"
"newprojectdialog" "4"
"image" "5"
@@ -1780,7 +1699,6 @@
"down-arrow@2x.png" "8"
"expression.png" "8"
"expression@2x.png" "8"
-"icon-gradient-list.png" "8"
"icon_color_conical_gradient.png" "8"
"icon_color_gradient.png" "8"
"icon_color_none.png" "8"
@@ -1835,7 +1753,6 @@
"GridView.png" "5"
"Image.png" "5"
"InfoBanner.png" "5"
-"item-icon16.png" "5"
"Item.png" "5"
"ListButton.png" "5"
"ListDelegate.png" "5"
@@ -1881,7 +1798,6 @@
"styles" "3"
"creator-dark.xml" "4"
"dark.xml" "4"
-"default.xml" "4"
"default_classic.xml" "4"
"grayscale.xml" "4"
"inkpot.xml" "4"
@@ -1896,8 +1812,6 @@
"tpl_resources.qrc" "5"
"tpl_single.cpp" "5"
"tpl_single.h" "5"
-"tpl_widget.cpp" "5"
-"tpl_widget.h" "5"
"tpl_widget_include.pri" "5"
"tpl_widget_lib.pro" "5"
"wizards" "4"
@@ -1906,12 +1820,8 @@
"catch2_tst.cpp" "7"
"googlecommon.js" "7"
"gtest_dependency.pri" "7"
-"tst.pro" "7"
-"tst.qbs" "7"
-"tst.txt" "7"
"tst_main.cpp" "7"
"tst_qml.tmpl" "7"
-"tst_src.cpp" "7"
"tst_src_gt.cpp" "7"
"autotest.png" "6"
"autotest@2x.png" "6"
@@ -2023,7 +1933,6 @@
"CMakeLists.txt" "7"
"lib.cpp" "7"
"lib.h" "7"
-"lib_global.h" "7"
"meson.build" "7"
"project.json" "7"
"project.pro" "7"
@@ -2092,7 +2001,6 @@
"widget" "7"
"main.pyproject" "8"
"wizard.json" "8"
-"main.pyproject" "7"
"main_empty.py" "7"
"main_mainwindow.py" "7"
"main_qtquick.py" "7"
@@ -2168,7 +2076,6 @@
"myplugin.cpp" "6"
"myplugin.h" "6"
"MyPlugin.json.in" "6"
-"myplugin_global.h" "6"
"mypluginconstants.h" "6"
"qtcreatorplugin.png" "6"
"qtcreatorplugin@2x.png" "6"
@@ -2178,11 +2085,9 @@
"themes" "3"
"dark.creatortheme" "4"
"default.creatortheme" "4"
-"design-light.creatortheme" "4"
"design.creatortheme" "4"
"flat-dark.creatortheme" "4"
"flat-light.creatortheme" "4"
-"flat.creatortheme" "4"
"translations" "1"
"translations.pro" "2"
"qtcreator" "2"
@@ -2192,7 +2097,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"Sources" "2"
"qtcreator_cs.ts" "3"
"qtcreator_da.ts" "3"
@@ -2235,7 +2139,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"qtsingleapplication" "2"
"qtsingleapplication.pri" "3"
"qtlockedfile" "3"
@@ -2253,12 +2156,10 @@
"rpath" "2"
"rpath.pri" "3"
"Headers" "2"
-"crashhandlersetup.h" "4"
"Sources" "2"
"crashhandlersetup.cpp" "4"
"main.cpp" "3"
"Other files" "2"
-"app.qbs" "3"
"app_version.h.in" "3"
"qtcreator.rc" "3"
"data" "1"
@@ -2270,7 +2171,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"qtcreatordata" "2"
"qtcreatordata.pri" "3"
"Sources" "2"
@@ -2278,7 +2178,6 @@
"SourceCodePro-Bold.ttf" "4"
"SourceCodePro-It.ttf" "4"
"SourceCodePro-Regular.ttf" "4"
-"SourceCodePro.txt" "4"
"package-manager" "3"
"auto-setup.cmake" "4"
"conan.cmake" "4"
@@ -2287,7 +2186,6 @@
"SourceCodePro-Bold.ttf" "4"
"SourceCodePro-It.ttf" "4"
"SourceCodePro-Regular.ttf" "4"
-"SourceCodePro.txt" "4"
"package-manager" "3"
"auto-setup.cmake" "4"
"conan.cmake" "4"
@@ -2300,7 +2198,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"qtcreatordata" "2"
"qtcreatordata.pri" "3"
"Sources" "2"
@@ -2382,7 +2279,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -2405,7 +2301,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -2539,7 +2434,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -2647,7 +2541,6 @@
"pp-cctype.h" "5"
"pp-engine.h" "5"
"pp-scanner.h" "5"
-"pp.h" "5"
"PPToken.h" "5"
"PreprocessorClient.h" "5"
"PreprocessorEnvironment.h" "5"
@@ -2701,7 +2594,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -2720,7 +2612,6 @@
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"Other files" "4"
-"CMakeLists.txt" "6"
"qtcreatordata" "3"
"qtcreatordata.pri" "4"
"Sources" "3"
@@ -2728,7 +2619,6 @@
"licenses" "5"
"LICENSE.GPLv2" "6"
"LICENSE.GPLv3" "6"
-"LICENSE.LGPLv21" "6"
"LICENSE.LGPLv3" "6"
"alert.xml" "5"
"autoconf.xml" "5"
@@ -2760,7 +2650,6 @@
"licenses" "5"
"LICENSE.GPLv2" "6"
"LICENSE.GPLv3" "6"
-"LICENSE.LGPLv21" "6"
"LICENSE.LGPLv3" "6"
"alert.xml" "5"
"autoconf.xml" "5"
@@ -2804,7 +2693,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -2813,15 +2701,12 @@
"Headers" "3"
"extensionsystem_global.h" "4"
"invoker.h" "4"
-"iplugin.h" "4"
"iplugin_p.h" "4"
"optionsparser.h" "4"
"plugindetailsview.h" "4"
"pluginerroroverview.h" "4"
"pluginerrorview.h" "4"
-"pluginmanager.h" "4"
"pluginmanager_p.h" "4"
-"pluginspec.h" "4"
"pluginspec_p.h" "4"
"pluginview.h" "4"
"Sources" "3"
@@ -2912,7 +2797,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -2986,7 +2870,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -3378,7 +3261,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -3387,27 +3269,6 @@
"qtserialization" "3"
"qtserialization.pri" "4"
"Headers" "4"
-"impl" "6"
-"loadingrefmap.h" "7"
-"objectid.h" "7"
-"savingrefmap.h" "7"
-"access.h" "6"
-"archivebasics.h" "6"
-"attribute.h" "6"
-"baseclass.h" "6"
-"flag.h" "6"
-"friend_access.h" "6"
-"parameters.h" "6"
-"qxmlinarchive.h" "6"
-"qxmloutarchive.h" "6"
-"reference.h" "6"
-"serialize.h" "6"
-"serialize_basic.h" "6"
-"serialize_container.h" "6"
-"serialize_enum.h" "6"
-"serialize_pointer.h" "6"
-"tag.h" "6"
-"typeregistry.h" "6"
"Sources" "4"
"src" "5"
"flag.cpp" "6"
@@ -3425,7 +3286,6 @@
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"Other files" "4"
-"CMakeLists.txt" "6"
"Sources" "3"
"Other files" "3"
"process_stub.qbs" "4"
@@ -3472,7 +3332,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -3596,7 +3455,6 @@
"tile-icon-hor-scale.png" "8"
"tile-icon-vert-crop.png" "8"
"tile-icon-vert-scale.png" "8"
-"tile-icon.png" "8"
"tr.png" "8"
"tr@2x.png" "8"
"underline-h-icon.png" "8"
@@ -3624,7 +3482,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -3756,7 +3613,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
@@ -3773,7 +3629,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"sqlite" "2"
"sqlite.pro" "3"
"qtcreatorlibrary" "3"
@@ -3785,7 +3640,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"sqlite_dependencies" "4"
@@ -3865,7 +3719,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"ssh_dependencies" "4"
@@ -3920,7 +3773,6 @@
"ksyntaxhighlighting_logging.h" "6"
"ksyntaxhighlighting_version.h" "5"
"Sources" "4"
-"ksyntaxhighlighting_logging.cpp" "6"
"qtcreatorlibrary" "3"
"qtcreatorlibrary.pri" "4"
"qtcreator" "4"
@@ -3930,7 +3782,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"syntax-highlighting_dependencies" "4"
@@ -3939,50 +3790,7 @@
"shared" "5"
"qtcreator_pch.h" "6"
"Headers" "3"
-"abstracthighlighter.h" "5"
-"abstracthighlighter_p.h" "5"
-"context_p.h" "5"
-"contextswitch_p.h" "5"
-"definition.h" "5"
-"definition_p.h" "5"
-"definitiondownloader.h" "5"
-"definitionref_p.h" "5"
-"foldingregion.h" "5"
-"format.h" "5"
-"format_p.h" "5"
-"htmlhighlighter.h" "5"
-"keywordlist_p.h" "5"
-"matchresult_p.h" "5"
-"repository.h" "5"
-"repository_p.h" "5"
-"rule_p.h" "5"
-"state.h" "5"
-"state_p.h" "5"
-"syntaxhighlighter.h" "5"
-"textstyledata_p.h" "5"
-"theme.h" "5"
-"themedata_p.h" "5"
-"wildcardmatcher_p.h" "5"
-"worddelimiters_p.h" "5"
-"xml_p.h" "5"
"Sources" "3"
-"abstracthighlighter.cpp" "5"
-"context.cpp" "5"
-"contextswitch.cpp" "5"
-"definition.cpp" "5"
-"definitiondownloader.cpp" "5"
-"foldingregion.cpp" "5"
-"format.cpp" "5"
-"htmlhighlighter.cpp" "5"
-"keywordlist.cpp" "5"
-"repository.cpp" "5"
-"rule.cpp" "5"
-"state.cpp" "5"
-"syntaxhighlighter.cpp" "5"
-"theme.cpp" "5"
-"themedata.cpp" "5"
-"wildcardmatcher.cpp" "5"
-"worddelimiters.cpp" "5"
"Resources" "3"
"/org.kde.syntax-highlighting/themes" "5"
"atom-one-dark.theme" "6"
@@ -4008,8 +3816,6 @@
"vim-dark.theme" "6"
"Other files" "3"
"syntax-highlighting.qbs" "4"
-"syntax_shared" "2"
-"syntax_shared.pri" "3"
"tracing" "2"
"tracing.pro" "3"
"qtcreatorlibrary" "3"
@@ -4023,7 +3829,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"tracing_dependencies" "4"
@@ -4036,22 +3841,16 @@
"flamegraphattached.h" "4"
"runscenegraphtest.h" "4"
"safecastable.h" "4"
-"timelineabstractrenderer.h" "4"
"timelineabstractrenderer_p.h" "4"
"timelineformattime.h" "4"
"timelineitemsrenderpass.h" "4"
-"timelinemodel.h" "4"
"timelinemodel_p.h" "4"
"timelinemodelaggregator.h" "4"
-"timelinenotesmodel.h" "4"
"timelinenotesmodel_p.h" "4"
"timelinenotesrenderpass.h" "4"
-"timelineoverviewrenderer.h" "4"
"timelineoverviewrenderer_p.h" "4"
-"timelinerenderer.h" "4"
"timelinerenderer_p.h" "4"
"timelinerenderpass.h" "4"
-"timelinerenderstate.h" "4"
"timelinerenderstate_p.h" "4"
"timelineselectionrenderpass.h" "4"
"timelinetheme.h" "4"
@@ -4131,7 +3930,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"utils_dependencies" "4"
@@ -4144,13 +3942,11 @@
"mimetypes" "4"
"mimetypes.pri" "5"
"Headers" "5"
-"mimedatabase.h" "6"
"mimedatabase_p.h" "6"
"mimeglobpattern_p.h" "6"
"mimemagicrule_p.h" "6"
"mimemagicrulematcher_p.h" "6"
"mimeprovider_p.h" "6"
-"mimetype.h" "6"
"mimetype_p.h" "6"
"mimetypeparser_p.h" "6"
"Sources" "5"
@@ -4174,7 +3970,6 @@
"variant" "6"
"variant.hpp" "7"
"theme" "5"
-"theme.h" "6"
"theme_p.h" "6"
"tooltip" "5"
"effects.h" "6"
@@ -4547,20 +4342,12 @@
"collapse@2x.png" "8"
"compile_error_taskbar.png" "8"
"compile_error_taskbar@2x.png" "8"
-"crumblepath-segment-first-hover.png" "8"
-"crumblepath-segment-first-hover@2x.png" "8"
"crumblepath-segment-first.png" "8"
"crumblepath-segment-first@2x.png" "8"
-"crumblepath-segment-last-hover.png" "8"
-"crumblepath-segment-last-hover@2x.png" "8"
"crumblepath-segment-last.png" "8"
"crumblepath-segment-last@2x.png" "8"
-"crumblepath-segment-middle-hover.png" "8"
-"crumblepath-segment-middle-hover@2x.png" "8"
"crumblepath-segment-middle.png" "8"
"crumblepath-segment-middle@2x.png" "8"
-"crumblepath-segment-single-hover.png" "8"
-"crumblepath-segment-single-hover@2x.png" "8"
"crumblepath-segment-single.png" "8"
"crumblepath-segment-single@2x.png" "8"
"dark_fileicon.png" "8"
@@ -4609,26 +4396,18 @@
"fittoview@2x.png" "8"
"home.png" "8"
"home@2x.png" "8"
-"iconoverlay_add.png" "8"
-"iconoverlay_add@2x.png" "8"
"iconoverlay_add_background.png" "8"
"iconoverlay_add_background@2x.png" "8"
"iconoverlay_add_small.png" "8"
"iconoverlay_add_small@2x.png" "8"
-"iconoverlay_error.png" "8"
-"iconoverlay_error@2x.png" "8"
"iconoverlay_error_background.png" "8"
"iconoverlay_error_background@2x.png" "8"
"iconoverlay_reset.png" "8"
"iconoverlay_reset@2x.png" "8"
-"iconoverlay_warning.png" "8"
-"iconoverlay_warning@2x.png" "8"
"iconoverlay_warning_background.png" "8"
"iconoverlay_warning_background@2x.png" "8"
"info.png" "8"
"info@2x.png" "8"
-"inputfield.png" "8"
-"inputfield@2x.png" "8"
"inputfield_disabled.png" "8"
"inputfield_disabled@2x.png" "8"
"interrupt_small.png" "8"
@@ -4663,10 +4442,6 @@
"online@2x.png" "8"
"pan.png" "8"
"pan@2x.png" "8"
-"panel_button.png" "8"
-"panel_button@2x.png" "8"
-"panel_button_checked.png" "8"
-"panel_button_checked@2x.png" "8"
"panel_button_checked_hover.png" "8"
"panel_button_checked_hover@2x.png" "8"
"panel_button_hover.png" "8"
@@ -4785,10 +4560,8 @@
"detail" "7"
"bool_type.h" "8"
"impl.h" "8"
-"iterator.h" "8"
"iterator_fwd.h" "8"
"memory.h" "8"
-"node.h" "8"
"node_data.h" "8"
"node_iterator.h" "8"
"node_ref.h" "8"
@@ -4853,7 +4626,6 @@
"exceptions.cpp" "6"
"exp.cpp" "6"
"memory.cpp" "6"
-"node.cpp" "6"
"node_data.cpp" "6"
"nodebuilder.cpp" "6"
"nodeevents.cpp" "6"
@@ -4941,7 +4713,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -4956,7 +4727,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Android.json.in" "6"
"Headers" "3"
"android_global.h" "4"
"androidavdmanager.h" "4"
@@ -4993,7 +4763,6 @@
"androidsdkmanagerwidget.h" "4"
"androidsdkmodel.h" "4"
"androidsdkpackage.h" "4"
-"androidservicewidget.h" "4"
"androidservicewidget_p.h" "4"
"androidsettingswidget.h" "4"
"androidsignaloperation.h" "4"
@@ -5139,7 +4908,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -5154,7 +4922,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"AutoTest.json.in" "6"
"Headers" "3"
"boost" "4"
"boostcodeparser.h" "5"
@@ -5508,7 +5275,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -5519,7 +5285,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"AutotoolsProjectManager.json.in" "6"
"Headers" "3"
"autogenstep.h" "4"
"autoreconfstep.h" "4"
@@ -5618,7 +5383,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -5627,7 +5391,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"BareMetal.json.in" "6"
"uvscservers" "3"
"uvscservers.pri" "4"
"Headers" "4"
@@ -5753,7 +5516,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -5768,7 +5530,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Bazaar.json.in" "6"
"Headers" "3"
"annotationhighlighter.h" "4"
"bazaarclient.h" "4"
@@ -5834,7 +5595,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -5847,7 +5607,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Beautifier.json.in" "6"
"Headers" "3"
"artisticstyle" "4"
"artisticstyle.h" "5"
@@ -5942,7 +5701,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -5955,7 +5713,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"BinEditor.json.in" "6"
"Headers" "3"
"bineditor_global.h" "4"
"bineditorconstants.h" "4"
@@ -6006,7 +5763,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -6019,7 +5775,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Bookmarks.json.in" "6"
"Headers" "3"
"bookmark.h" "4"
"bookmarkfilter.h" "4"
@@ -6110,7 +5865,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -6123,7 +5877,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Boot2Qt.json.in" "6"
"Headers" "3"
"qdb_global.h" "4"
"qdbconstants.h" "4"
@@ -6217,7 +5970,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -6230,7 +5982,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ClangCodeModel.json.in" "6"
"Headers" "3"
"test" "4"
"clangautomationutils.h" "5"
@@ -6350,7 +6101,6 @@
"membercompletion-friend.cpp" "7"
"membercompletion-inside.cpp" "7"
"membercompletion-outside.cpp" "7"
-"memberCompletion.cpp" "7"
"noDotToArrowCorrectionForFloats.cpp" "7"
"preprocessorKeywordsCompletion.cpp" "7"
"preprocessorKeywordsCompletion2.cpp" "7"
@@ -6418,7 +6168,6 @@
"membercompletion-friend.cpp" "8"
"membercompletion-inside.cpp" "8"
"membercompletion-outside.cpp" "8"
-"memberCompletion.cpp" "8"
"noDotToArrowCorrectionForFloats.cpp" "8"
"preprocessorKeywordsCompletion.cpp" "8"
"preprocessorKeywordsCompletion2.cpp" "8"
@@ -6521,7 +6270,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -6530,7 +6278,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ClangFormat.json.in" "6"
"Headers" "3"
"clangformatconfigwidget.h" "4"
"clangformatfile.h" "4"
@@ -6619,7 +6366,6 @@
"yaml-cpp_dependencies" "5"
"yaml-cpp_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -6628,7 +6374,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ClangTools.json.in" "6"
"yaml-cpp_installation" "3"
"yaml-cpp_installation.pri" "4"
"Headers" "3"
@@ -6779,7 +6524,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -6792,7 +6536,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ClassView.json.in" "6"
"Headers" "3"
"classviewconstants.h" "4"
"classviewmanager.h" "4"
@@ -6861,7 +6604,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -6876,7 +6618,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ClearCase.json.in" "6"
"Headers" "3"
"activityselector.h" "4"
"annotationhighlighter.h" "4"
@@ -6966,7 +6707,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -6981,7 +6721,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"CMakeProjectManager.json.in" "6"
"Headers" "3"
"builddirparameters.h" "4"
"cmake_global.h" "4"
@@ -7100,7 +6839,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -7113,7 +6851,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"CompilationDatabaseProjectManager.json.in" "6"
"Headers" "3"
"compilationdatabaseconstants.h" "4"
"compilationdatabaseproject.h" "4"
@@ -7174,7 +6911,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -7183,7 +6919,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Conan.json.in" "6"
"Headers" "3"
"conanconstants.h" "4"
"conaninstallstep.h" "4"
@@ -7289,7 +7024,6 @@
"filesystemfilter.cpp" "5"
"ilocatorfilter.cpp" "5"
"javascriptfilter.cpp" "5"
-"locator.cpp" "5"
"locator_test.cpp" "5"
"locatorfiltersfilter.cpp" "5"
"locatorfiltertest.cpp" "5"
@@ -7322,7 +7056,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -7331,14 +7064,10 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Core.json.in" "6"
"Headers" "3"
"actionmanager" "4"
-"actioncontainer.h" "5"
"actioncontainer_p.h" "5"
-"actionmanager.h" "5"
"actionmanager_p.h" "5"
-"command.h" "5"
"command_p.h" "5"
"commandbutton.h" "5"
"commandmappings.h" "5"
@@ -7359,15 +7088,12 @@
"settingsdialog.h" "5"
"shortcutsettings.h" "5"
"editormanager" "4"
-"documentmodel.h" "5"
"documentmodel_p.h" "5"
"editorarea.h" "5"
-"editormanager.h" "5"
"editormanager_p.h" "5"
"editorview.h" "5"
"editorwindow.h" "5"
"ieditor.h" "5"
-"ieditorfactory.h" "5"
"ieditorfactory_p.h" "5"
"iexternaleditor.h" "5"
"openeditorsview.h" "5"
@@ -7376,7 +7102,6 @@
"progressmanager" "4"
"futureprogress.h" "5"
"progressbar.h" "5"
-"progressmanager.h" "5"
"progressmanager_p.h" "5"
"progressview.h" "5"
"basefilewizard.h" "4"
@@ -7402,7 +7127,6 @@
"generalsettings.h" "4"
"generatedfile.h" "4"
"helpitem.h" "4"
-"helpmanager.h" "4"
"helpmanager_implementation.h" "4"
"icontext.h" "4"
"icore.h" "4"
@@ -7583,12 +7307,8 @@
"fancyactionbar.qrc" "4"
"/fancyactionbar" "5"
"images" "6"
-"mode_Design.png" "7"
-"mode_Design@2x.png" "7"
"mode_design_mask.png" "7"
"mode_design_mask@2x.png" "7"
-"mode_Edit.png" "7"
-"mode_Edit@2x.png" "7"
"mode_edit_mask.png" "7"
"mode_edit_mask@2x.png" "7"
"Other files" "3"
@@ -7632,7 +7352,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -7645,7 +7364,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"CodePaster.json.in" "6"
"Headers" "3"
"codepasterservice.h" "4"
"columnindicatortextedit.h" "4"
@@ -7745,7 +7463,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -7758,7 +7475,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Cppcheck.json.in" "6"
"Headers" "3"
"cppcheckconstants.h" "4"
"cppcheckdiagnostic.h" "4"
@@ -7834,7 +7550,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -7847,7 +7562,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"CppEditor.json.in" "6"
"Headers" "3"
"abstracteditorsupport.h" "4"
"abstractoverviewmodel.h" "4"
@@ -7861,7 +7575,6 @@
"clangdiagnosticconfigsmodel.h" "4"
"clangdiagnosticconfigsselectionwidget.h" "4"
"clangdiagnosticconfigswidget.h" "4"
-"compileroptionsbuilder.h" "4"
"compileroptionsbuilder_test.h" "4"
"cppautocompleter.h" "4"
"cppbuiltinmodelmanagersupport.h" "4"
@@ -7884,7 +7597,6 @@
"cppcompletionassistprovider.h" "4"
"cppcurrentdocumentfilter.h" "4"
"cppcursorinfo.h" "4"
-"cppdoxygen.h" "4"
"cppdoxygen_test.h" "4"
"cppeditor_global.h" "4"
"cppeditorconstants.h" "4"
@@ -7900,25 +7612,20 @@
"cppfunctiondecldeflink.h" "4"
"cppheadersource_test.h" "4"
"cpphighlighter.h" "4"
-"cppincludehierarchy.h" "4"
"cppincludehierarchy_test.h" "4"
"cppincludesfilter.h" "4"
"cppindexingsupport.h" "4"
"cppinsertvirtualmethods.h" "4"
"cpplocalrenaming.h" "4"
-"cpplocalsymbols.h" "4"
"cpplocalsymbols_test.h" "4"
"cpplocatordata.h" "4"
-"cpplocatorfilter.h" "4"
"cpplocatorfilter_test.h" "4"
"cppminimizableinfobars.h" "4"
-"cppmodelmanager.h" "4"
"cppmodelmanager_test.h" "4"
"cppmodelmanagersupport.h" "4"
"cppoutline.h" "4"
"cppoverviewmodel.h" "4"
"cppparsecontext.h" "4"
-"cpppointerdeclarationformatter.h" "4"
"cpppointerdeclarationformatter_test.h" "4"
"cpppreprocessordialog.h" "4"
"cppprojectfile.h" "4"
@@ -7928,7 +7635,6 @@
"cppprojectupdater.h" "4"
"cppprojectupdaterinterface.h" "4"
"cppqtstyleindenter.h" "4"
-"cppquickfix.h" "4"
"cppquickfix_test.h" "4"
"cppquickfixassistant.h" "4"
"cppquickfixes.h" "4"
@@ -7943,7 +7649,6 @@
"cppsemanticinfo.h" "4"
"cppsemanticinfoupdater.h" "4"
"cppsourceprocessertesthelper.h" "4"
-"cppsourceprocessor.h" "4"
"cppsourceprocessor_test.h" "4"
"cpptoolsjsextension.h" "4"
"cpptoolsreuse.h" "4"
@@ -7968,7 +7673,6 @@
"indexitem.h" "4"
"insertionpointlocator.h" "4"
"modelmanagertesthelper.h" "4"
-"projectinfo.h" "4"
"projectinfo_test.h" "4"
"projectpart.h" "4"
"refactoringengineinterface.h" "4"
@@ -7980,7 +7684,6 @@
"symbolfinder.h" "4"
"symbolsearcher_test.h" "4"
"symbolsfindfilter.h" "4"
-"typehierarchybuilder.h" "4"
"typehierarchybuilder_test.h" "4"
"usages.h" "4"
"wrappablelineedit.h" "4"
@@ -7996,7 +7699,6 @@
"clangdiagnosticconfigsmodel.cpp" "4"
"clangdiagnosticconfigsselectionwidget.cpp" "4"
"clangdiagnosticconfigswidget.cpp" "4"
-"compileroptionsbuilder.cpp" "4"
"compileroptionsbuilder_test.cpp" "4"
"cppautocompleter.cpp" "4"
"cppbuiltinmodelmanagersupport.cpp" "4"
@@ -8017,7 +7719,6 @@
"cppcompletionassistprocessor.cpp" "4"
"cppcompletionassistprovider.cpp" "4"
"cppcurrentdocumentfilter.cpp" "4"
-"cppdoxygen.cpp" "4"
"cppdoxygen_test.cpp" "4"
"cppeditordocument.cpp" "4"
"cppeditoroutline.cpp" "4"
@@ -8031,25 +7732,20 @@
"cppfunctiondecldeflink.cpp" "4"
"cppheadersource_test.cpp" "4"
"cpphighlighter.cpp" "4"
-"cppincludehierarchy.cpp" "4"
"cppincludehierarchy_test.cpp" "4"
"cppincludesfilter.cpp" "4"
"cppindexingsupport.cpp" "4"
"cppinsertvirtualmethods.cpp" "4"
"cpplocalrenaming.cpp" "4"
-"cpplocalsymbols.cpp" "4"
"cpplocalsymbols_test.cpp" "4"
"cpplocatordata.cpp" "4"
-"cpplocatorfilter.cpp" "4"
"cpplocatorfilter_test.cpp" "4"
"cppminimizableinfobars.cpp" "4"
-"cppmodelmanager.cpp" "4"
"cppmodelmanager_test.cpp" "4"
"cppmodelmanagersupport.cpp" "4"
"cppoutline.cpp" "4"
"cppoverviewmodel.cpp" "4"
"cppparsecontext.cpp" "4"
-"cpppointerdeclarationformatter.cpp" "4"
"cpppointerdeclarationformatter_test.cpp" "4"
"cpppreprocessordialog.cpp" "4"
"cppprojectfile.cpp" "4"
@@ -8058,7 +7754,6 @@
"cppprojectpartchooser.cpp" "4"
"cppprojectupdater.cpp" "4"
"cppqtstyleindenter.cpp" "4"
-"cppquickfix.cpp" "4"
"cppquickfix_test.cpp" "4"
"cppquickfixassistant.cpp" "4"
"cppquickfixes.cpp" "4"
@@ -8072,7 +7767,6 @@
"cppselectionchanger.cpp" "4"
"cppsemanticinfoupdater.cpp" "4"
"cppsourceprocessertesthelper.cpp" "4"
-"cppsourceprocessor.cpp" "4"
"cppsourceprocessor_test.cpp" "4"
"cpptoolsjsextension.cpp" "4"
"cpptoolsreuse.cpp" "4"
@@ -8095,7 +7789,6 @@
"indexitem.cpp" "4"
"insertionpointlocator.cpp" "4"
"modelmanagertesthelper.cpp" "4"
-"projectinfo.cpp" "4"
"projectinfo_test.cpp" "4"
"projectpart.cpp" "4"
"resourcepreviewhoverhandler.cpp" "4"
@@ -8106,7 +7799,6 @@
"symbolfinder.cpp" "4"
"symbolsearcher_test.cpp" "4"
"symbolsfindfilter.cpp" "4"
-"typehierarchybuilder.cpp" "4"
"typehierarchybuilder_test.cpp" "4"
"wrappablelineedit.cpp" "4"
"Forms" "3"
@@ -8190,7 +7882,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -8199,7 +7890,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"CtfVisualizer.json.in" "6"
"Headers" "3"
"json.hpp" "5"
"ctfstatisticsmodel.h" "4"
@@ -8262,7 +7952,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -8277,7 +7966,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"CVS.json.in" "6"
"Headers" "3"
"annotationhighlighter.h" "4"
"cvseditor.h" "4"
@@ -8440,7 +8128,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -8455,7 +8142,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Debugger.json.in" "6"
"shared" "3"
"shared.pri" "4"
"Headers" "4"
@@ -8587,21 +8273,15 @@
"breakpoint_pending_overlay.png" "7"
"breakpoint_pending_overlay@2x.png" "7"
"debugger_breakpoints.png" "7"
-"debugger_continue.png" "7"
-"debugger_continue@2x.png" "7"
"debugger_continue_1_mask.png" "7"
"debugger_continue_1_mask@2x.png" "7"
"debugger_continue_2_mask.png" "7"
"debugger_continue_2_mask@2x.png" "7"
"debugger_empty_14.png" "7"
-"debugger_interrupt.png" "7"
-"debugger_interrupt@2x.png" "7"
"debugger_interrupt_mask.png" "7"
"debugger_interrupt_mask@2x.png" "7"
"debugger_restart_small.png" "7"
"debugger_restart_small@2x.png" "7"
-"debugger_reversemode.png" "7"
-"debugger_reversemode@2x.png" "7"
"debugger_reversemode_background.png" "7"
"debugger_reversemode_background@2x.png" "7"
"debugger_singleinstructionmode.png" "7"
@@ -8612,16 +8292,10 @@
"debugger_stepout_small@2x.png" "7"
"debugger_stepover_small.png" "7"
"debugger_stepover_small@2x.png" "7"
-"debugger_stop.png" "7"
-"debugger_stop@2x.png" "7"
"debugger_stop_mask.png" "7"
"debugger_stop_mask@2x.png" "7"
-"location.png" "7"
-"location@2x.png" "7"
"location_background.png" "7"
"location_background@2x.png" "7"
-"macos_touchbar_debug.png" "7"
-"macos_touchbar_debug@2x.png" "7"
"macos_touchbar_debug_continue.png" "7"
"macos_touchbar_debug_continue@2x.png" "7"
"macos_touchbar_debug_exit.png" "7"
@@ -8634,8 +8308,6 @@
"macos_touchbar_debug_step_out@2x.png" "7"
"macos_touchbar_debug_step_over.png" "7"
"macos_touchbar_debug_step_over@2x.png" "7"
-"mode_debug.png" "7"
-"mode_debug@2x.png" "7"
"mode_debug_mask.png" "7"
"mode_debug_mask@2x.png" "7"
"pin.xpm" "7"
@@ -8732,7 +8404,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -8749,7 +8420,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Designer.json.in" "6"
"Headers" "3"
"codemodelhelpers.h" "4"
"designer_export.h" "4"
@@ -8822,7 +8492,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -8835,10 +8504,8 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"DiffEditor.json.in" "6"
"Headers" "3"
"descriptionwidgetwatcher.h" "4"
-"diffeditor.h" "4"
"diffeditor_global.h" "4"
"diffeditorconstants.h" "4"
"diffeditorcontroller.h" "4"
@@ -8918,7 +8585,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -8929,7 +8595,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Docker.json.in" "6"
"Headers" "3"
"docker_global.h" "4"
"dockerbuildstep.h" "4"
@@ -8975,7 +8640,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -8988,7 +8652,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"EmacsKeys.json.in" "6"
"Headers" "3"
"emacskeysconstants.h" "4"
"emacskeysplugin.h" "4"
@@ -9031,7 +8694,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9044,7 +8706,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"FakeVim.json.in" "6"
"Headers" "3"
"fakevimactions.h" "4"
"fakevimhandler.h" "4"
@@ -9106,7 +8767,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -9121,7 +8781,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"GenericProjectManager.json.in" "6"
"Headers" "3"
"filesselectionwizardpage.h" "4"
"genericbuildconfiguration.h" "4"
@@ -9212,7 +8871,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9227,7 +8885,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Git.json.in" "6"
"Headers" "3"
"annotationhighlighter.h" "4"
"branchadddialog.h" "4"
@@ -9335,7 +8992,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9348,7 +9004,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"GLSLEditor.json.in" "6"
"Headers" "3"
"glslautocompleter.h" "4"
"glslcompletionassist.h" "4"
@@ -9396,7 +9051,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9405,7 +9059,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"HelloWorld.json.in" "6"
"Headers" "3"
"helloworldplugin.h" "4"
"helloworldwindow.h" "4"
@@ -9470,7 +9123,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9483,7 +9135,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Help.json.in" "6"
"Headers" "3"
"docsettingspage.h" "4"
"filtersettingspage.h" "4"
@@ -9533,8 +9184,6 @@
"images" "6"
"macos_touchbar_help.png" "7"
"macos_touchbar_help@2x.png" "7"
-"mode_help.png" "7"
-"mode_help@2x.png" "7"
"mode_help_mask.png" "7"
"mode_help_mask@2x.png" "7"
"settingscategory_help.png" "7"
@@ -9566,7 +9215,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9575,7 +9223,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ImageViewer.json.in" "6"
"Headers" "3"
"exportdialog.h" "4"
"imageview.h" "4"
@@ -9638,7 +9285,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9647,7 +9293,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"IncrediBuild.json.in" "6"
"Headers" "3"
"buildconsolebuildstep.h" "4"
"cmakecommandbuilder.h" "4"
@@ -9735,7 +9380,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9744,7 +9388,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Ios.json.in" "6"
"Headers" "3"
"createsimulatordialog.h" "4"
"iosbuildconfiguration.h" "4"
@@ -9839,7 +9482,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9852,7 +9494,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"LanguageClient.json.in" "6"
"Headers" "3"
"client.h" "4"
"diagnosticmanager.h" "4"
@@ -9939,7 +9580,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -9952,7 +9592,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Macros.json.in" "6"
"Headers" "3"
"actionmacrohandler.h" "4"
"findmacrohandler.h" "4"
@@ -10017,7 +9656,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -10026,7 +9664,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Marketplace.json.in" "6"
"Headers" "3"
"marketplaceplugin.h" "4"
"productlistmodel.h" "4"
@@ -10103,7 +9740,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -10114,7 +9750,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"McuSupport.json.in" "6"
"Headers" "3"
"mcusupport_global.h" "4"
"mcusupportcmakemapper.h" "4"
@@ -10194,7 +9829,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -10209,7 +9843,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Mercurial.json.in" "6"
"Headers" "3"
"annotationhighlighter.h" "4"
"authenticationdialog.h" "4"
@@ -10293,7 +9926,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -10304,7 +9936,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"MesonProjectManager.json.in" "6"
"Headers" "3"
"exewrappers" "4"
"mesontools.h" "5"
@@ -10474,7 +10105,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -10483,7 +10113,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ModelEditor.json.in" "6"
"Headers" "3"
"actionhandler.h" "4"
"classviewcontroller.h" "4"
@@ -10496,7 +10125,6 @@
"extpropertiesmview.h" "4"
"jsextension.h" "4"
"modeldocument.h" "4"
-"modeleditor.h" "4"
"modeleditor_constants.h" "4"
"modeleditor_global.h" "4"
"modeleditor_plugin.h" "4"
@@ -10522,7 +10150,6 @@
"extpropertiesmview.cpp" "4"
"jsextension.cpp" "4"
"modeldocument.cpp" "4"
-"modeleditor.cpp" "4"
"modeleditor_plugin.cpp" "4"
"modeleditorfactory.cpp" "4"
"modelindexer.cpp" "4"
@@ -10577,7 +10204,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -10590,7 +10216,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Nim.json.in" "6"
"Headers" "3"
"editor" "4"
"nimcompletionassistprovider.h" "5"
@@ -10721,7 +10346,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -10736,7 +10360,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Perforce.json.in" "6"
"Headers" "3"
"annotationhighlighter.h" "4"
"changenumberdialog.h" "4"
@@ -10822,7 +10445,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -10833,7 +10455,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"PerfProfiler.json.in" "6"
"perfprofilertracefile_test.h" "5"
"perfresourcecounter_test.h" "5"
"perfconfigeventsmodel.h" "4"
@@ -10920,7 +10541,6 @@
"jsonwizard" "3"
"jsonwizard.pri" "4"
"Headers" "4"
-"jsonfieldpage.h" "5"
"jsonfieldpage_p.h" "5"
"jsonfilepage.h" "5"
"jsonkitspage.h" "5"
@@ -10930,7 +10550,6 @@
"jsonwizardfactory.h" "5"
"jsonwizardfilegenerator.h" "5"
"jsonwizardgeneratorfactory.h" "5"
-"jsonwizardpagefactory.h" "5"
"jsonwizardpagefactory_p.h" "5"
"jsonwizardscannergenerator.h" "5"
"wizarddebug.h" "5"
@@ -10944,7 +10563,6 @@
"jsonwizardfactory.cpp" "5"
"jsonwizardfilegenerator.cpp" "5"
"jsonwizardgeneratorfactory.cpp" "5"
-"jsonwizardpagefactory.cpp" "5"
"jsonwizardpagefactory_p.cpp" "5"
"jsonwizardscannergenerator.cpp" "5"
"qtcreatorplugin" "3"
@@ -10978,7 +10596,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -10991,7 +10608,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ProjectExplorer.json.in" "6"
"Headers" "3"
"devicesupport" "4"
"desktopdevice.h" "5"
@@ -11103,7 +10719,6 @@
"project.h" "4"
"projectconfiguration.h" "4"
"projectconfigurationmodel.h" "4"
-"projectexplorer.h" "4"
"projectexplorer_export.h" "4"
"projectexplorerconstants.h" "4"
"projectexplorericons.h" "4"
@@ -11323,8 +10938,6 @@
"images" "6"
"analyzer_overlay_small.png" "7"
"analyzer_overlay_small@2x.png" "7"
-"build.png" "7"
-"build@2x.png" "7"
"build_hammerhandle_mask.png" "7"
"build_hammerhandle_mask@2x.png" "7"
"build_hammerhead_mask.png" "7"
@@ -11386,8 +10999,6 @@
"fileoverlay_unknown@2x.png" "7"
"importasproject.png" "7"
"importasproject@2x.png" "7"
-"mode_project.png" "7"
-"mode_project@2x.png" "7"
"mode_project_mask.png" "7"
"mode_project_mask@2x.png" "7"
"ProjectDependencies.png" "7"
@@ -11395,8 +11006,6 @@
"rebuildhammerhandles@2x.png" "7"
"rebuildhammerheads.png" "7"
"rebuildhammerheads@2x.png" "7"
-"run.png" "7"
-"run@2x.png" "7"
"run_mask.png" "7"
"run_mask@2x.png" "7"
"RunSettings.png" "7"
@@ -11469,7 +11078,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -11482,7 +11090,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Python.json.in" "6"
"Headers" "3"
"pythonconstants.h" "4"
"pythoneditor.h" "4"
@@ -11594,7 +11201,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -11611,7 +11217,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QmakeProjectManager.json.in" "6"
"Headers" "3"
"wizards" "4"
"qtprojectparameters.h" "5"
@@ -11764,20 +11369,15 @@
"componentsplugin.qrc" "6"
"/componentsplugin" "7"
"images" "8"
-"column-layouts-icon-16px.png" "9"
"column-layouts-icon.png" "9"
"column-layouts-icon@2x.png" "9"
-"grid-layouts-icon-16px.png" "9"
"grid-layouts-icon.png" "9"
"grid-layouts-icon@2x.png" "9"
"item-icon.png" "9"
"item-icon16.png" "9"
-"row-layouts-icon-16px.png" "9"
"row-layouts-icon.png" "9"
"row-layouts-icon@2x.png" "9"
-"splitview-layouts-icon-16px.png" "9"
"splitview-layouts-icon.png" "9"
-"stack-layouts-icon-16px.png" "9"
"stack-layouts-icon.png" "9"
"stack-layouts-icon@2x.png" "9"
"components.metainfo" "8"
@@ -11890,7 +11490,6 @@
"formatoperation.h" "6"
"hdrimage.h" "6"
"layoutingridlayout.h" "6"
-"modelnodecontextmenu.h" "6"
"modelnodecontextmenu_helper.h" "6"
"modelnodeoperations.h" "6"
"navigation2d.h" "6"
@@ -11912,7 +11511,6 @@
"formatoperation.cpp" "6"
"hdrimage.cpp" "6"
"layoutingridlayout.cpp" "6"
-"modelnodecontextmenu.cpp" "6"
"modelnodecontextmenu_helper.cpp" "6"
"modelnodeoperations.cpp" "6"
"navigation2d.cpp" "6"
@@ -12597,8 +12195,6 @@
"scrubhandle-48.png" "8"
"scrubhandle-disabled-24.png" "8"
"scrubhandle-disabled-48.png" "8"
-"snapping.png" "8"
-"snapping@2x.png" "8"
"snapping_and_anchoring.png" "8"
"snapping_and_anchoring@2x.png" "8"
"instances" "4"
@@ -12682,30 +12278,30 @@
"itemlibrary.qrc" "6"
"/ItemLibrary" "7"
"images" "8"
-"asset_font_128.png" "9"
-"asset_font_192.png" "9"
-"asset_font_256.png" "9"
"asset_font_32.png" "9"
-"asset_font_384.png" "9"
"asset_font_48.png" "9"
"asset_font_64.png" "9"
"asset_font_96.png" "9"
-"asset_shader_128.png" "9"
-"asset_shader_192.png" "9"
-"asset_shader_256.png" "9"
+"asset_font_128.png" "9"
+"asset_font_192.png" "9"
+"asset_font_256.png" "9"
+"asset_font_384.png" "9"
"asset_shader_32.png" "9"
-"asset_shader_384.png" "9"
"asset_shader_48.png" "9"
"asset_shader_64.png" "9"
"asset_shader_96.png" "9"
-"asset_sound_128.png" "9"
-"asset_sound_192.png" "9"
-"asset_sound_256.png" "9"
+"asset_shader_128.png" "9"
+"asset_shader_192.png" "9"
+"asset_shader_256.png" "9"
+"asset_shader_384.png" "9"
"asset_sound_32.png" "9"
-"asset_sound_384.png" "9"
"asset_sound_48.png" "9"
"asset_sound_64.png" "9"
"asset_sound_96.png" "9"
+"asset_sound_128.png" "9"
+"asset_sound_192.png" "9"
+"asset_sound_256.png" "9"
+"asset_sound_384.png" "9"
"browse.png" "9"
"browse@2x.png" "9"
"item-3D_model-icon.png" "9"
@@ -12944,7 +12540,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"qtsupport_dependencies" "5"
@@ -12961,7 +12556,6 @@
"shared" "6"
"qtcreator_gui_pch.h" "7"
"Other files" "5"
-"QmlDesigner.json.in" "7"
"resources" "4"
"resources.pri" "5"
"Resources" "5"
@@ -13115,9 +12709,6 @@
"global_record_keyframes@2x.png" "9"
"is_keyframe.png" "9"
"is_keyframe@2x.png" "9"
-"keyframe-16px.png" "9"
-"keyframe.png" "9"
-"keyframe@2x.png" "9"
"keyframe_autobezier_active.png" "9"
"keyframe_autobezier_active@2x.png" "9"
"keyframe_autobezier_inactive.png" "9"
@@ -13257,76 +12848,55 @@
"/qtquickplugin" "7"
"images" "8"
"animated-image-icon.png" "9"
-"animated-image-icon16.png" "9"
"animated-image-icon@2x.png" "9"
"audio-output-16px.png" "9"
"audio-output-24px.png" "9"
"audio-output-24px@2x.png" "9"
"border-image-icon.png" "9"
-"border-image-icon16.png" "9"
"border-image-icon@2x.png" "9"
-"column-positioner-icon-16px.png" "9"
"column-positioner-icon.png" "9"
"column-positioner-icon@2x.png" "9"
"component-icon.png" "9"
-"component-icon16.png" "9"
"component-icon@2x.png" "9"
"default-icon.png" "9"
"flickable-icon.png" "9"
-"flickable-icon16.png" "9"
"flickable-icon@2x.png" "9"
"flipable-icon.png" "9"
"flipable-icon16.png" "9"
-"flow-positioner-icon-16px.png" "9"
"flow-positioner-icon.png" "9"
"flow-positioner-icon@2x.png" "9"
"focusscope-icon.png" "9"
-"focusscope-icon16.png" "9"
"focusscope-icon@2x.png" "9"
-"grid-positioner-icon-16px.png" "9"
"grid-positioner-icon.png" "9"
"grid-positioner-icon@2x.png" "9"
"gridview-icon.png" "9"
-"gridview-icon16.png" "9"
"gridview-icon@2x.png" "9"
"image-icon.png" "9"
-"image-icon16.png" "9"
"image-icon@2x.png" "9"
"item-icon.png" "9"
-"item-icon16.png" "9"
"item-icon@2x.png" "9"
"listview-icon.png" "9"
-"listview-icon16.png" "9"
"listview-icon@2x.png" "9"
"loader-icon.png" "9"
-"loader-icon16.png" "9"
"loader-icon@2x.png" "9"
"media-player-16px.png" "9"
"media-player-24px.png" "9"
"media-player-24px@2x.png" "9"
"mouse-area-icon.png" "9"
-"mouse-area-icon16.png" "9"
"mouse-area-icon@2x.png" "9"
"pathview-icon.png" "9"
-"pathview-icon16.png" "9"
"pathview-icon@2x.png" "9"
"rect-icon.png" "9"
-"rect-icon16.png" "9"
"rect-icon@2x.png" "9"
"repeater-icon.png" "9"
-"repeater-icon16.png" "9"
"repeater-icon@2x.png" "9"
-"row-positioner-icon-16px.png" "9"
"row-positioner-icon.png" "9"
"row-positioner-icon@2x.png" "9"
"text-edit-icon.png" "9"
-"text-edit-icon16.png" "9"
"text-edit-icon@2x.png" "9"
"text-icon.png" "9"
-"text-icon16.png" "9"
"text-icon@2x.png" "9"
"text-input-icon.png" "9"
-"text-input-icon16.png" "9"
"text-input-icon@2x.png" "9"
"video-16px.png" "9"
"video-24px.png" "9"
@@ -13415,7 +12985,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -13428,7 +12997,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QmlJSEditor.json.in" "6"
"Headers" "3"
"qmlexpressionundercursor.h" "4"
"qmljsautocompleter.h" "4"
@@ -13436,10 +13004,8 @@
"qmljscomponentfromobjectdef.h" "4"
"qmljscomponentnamedialog.h" "4"
"qmljseditingsettingspage.h" "4"
-"qmljseditor.h" "4"
"qmljseditor_global.h" "4"
"qmljseditorconstants.h" "4"
-"qmljseditordocument.h" "4"
"qmljseditordocument_p.h" "4"
"qmljseditorplugin.h" "4"
"qmljsfindreferences.h" "4"
@@ -13543,7 +13109,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -13558,7 +13123,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QmlJSTools.json.in" "6"
"Headers" "3"
"qmljsbundleprovider.h" "4"
"qmljscodestylepreferencesfactory.h" "4"
@@ -13663,7 +13227,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -13676,7 +13239,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QmlPreview.json.in" "6"
"qmlpreviewclient_test.h" "5"
"qmlpreviewplugin_test.h" "5"
"qmldebugtranslationclient.h" "4"
@@ -13757,7 +13319,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -13772,7 +13333,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QmlProfiler.json.in" "6"
"debugmessagesmodel_test.h" "5"
"fakedebugserver.h" "5"
"flamegraphmodel_test.h" "5"
@@ -13934,7 +13494,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -13945,7 +13504,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QmlProjectManager.json.in" "6"
"Headers" "3"
"qmlmainfileaspect.h" "4"
"qmlmultilanguageaspect.h" "4"
@@ -14031,7 +13589,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -14044,7 +13601,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Qnx.json.in" "6"
"Headers" "3"
"qnx_export.h" "4"
"qnxanalyzesupport.h" "4"
@@ -14111,7 +13667,6 @@
"qtcreator_testvars" "3"
"qtcreator_testvars.pri" "4"
"Other files" "3"
-"CMakeLists.txt" "5"
"qtsupport" "2"
"qtsupport.pro" "3"
"proparser" "3"
@@ -14122,7 +13677,6 @@
"proitems.h" "5"
"prowriter.h" "5"
"qmake_global.h" "5"
-"qmakeevaluator.h" "5"
"qmakeevaluator_p.h" "5"
"qmakeglobals.h" "5"
"qmakeparser.h" "5"
@@ -14179,7 +13733,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -14192,7 +13745,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"QtSupport.json.in" "6"
"Headers" "3"
"baseqtversion.h" "4"
"codegenerator.h" "4"
@@ -14325,7 +13877,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"remotelinux_dependencies" "4"
@@ -14336,7 +13887,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"RemoteLinux.json.in" "6"
"Headers" "3"
"abstractpackagingstep.h" "4"
"abstractremotelinuxdeployservice.h" "4"
@@ -14476,7 +14026,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"resourceeditor_dependencies" "4"
@@ -14487,7 +14036,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ResourceEditor.json.in" "6"
"Headers" "3"
"resource_global.h" "4"
"resourceeditorconstants.h" "4"
@@ -14604,9 +14152,7 @@
"initial.png" "8"
"more_colors.png" "8"
"navigator.png" "8"
-"parallel.png" "8"
"parallel_icon.png" "8"
-"state.png" "8"
"state_color.png" "8"
"statistics.png" "8"
"outputpane" "3"
@@ -14751,7 +14297,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -14768,7 +14313,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"ScxmlEditor.json.in" "6"
"Headers" "3"
"scxmleditor_global.h" "4"
"scxmleditorconstants.h" "4"
@@ -14816,7 +14360,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -14831,7 +14374,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"SerialTerminal.json.in" "6"
"Headers" "3"
"consolelineedit.h" "4"
"serialcontrol.h" "4"
@@ -14878,7 +14420,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -14893,7 +14434,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"SilverSearcher.json.in" "6"
"Headers" "3"
"findinfilessilversearcher.h" "4"
"outputparser_test.h" "4"
@@ -14973,7 +14513,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -14986,7 +14525,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"StudioWelcome.json.in" "6"
"Headers" "3"
"createproject.h" "4"
"examplecheckout.h" "4"
@@ -15024,8 +14562,6 @@
"QML" "3"
"qml" "4"
"downloaddialog" "5"
-"FileDownloader.qml" "7"
-"FileExtractor.qml" "7"
"ArcItem.qml" "6"
"CircularIndicator.ui.qml" "6"
"CoolProgressBar.ui.qml" "6"
@@ -15042,14 +14578,12 @@
"Image2.qml" "6"
"main.qml" "6"
"RectangleMask.qml" "6"
-"Sequencer.qml" "6"
"Sequencer_Bars.qml" "6"
"SlidersTogether.qml" "6"
-"Splash_Image25d.qml" "6"
"Splash_Image2d_png.qml" "6"
+"Splash_Image25d.qml" "6"
"Welcome_splash.qml" "6"
"welcomepage" "5"
-"Constants.qml" "7"
"mockData" "6"
"projectmodel" "7"
"ProjectModel.qml" "8"
@@ -15189,7 +14723,6 @@
"vcsbase_dependencies" "5"
"vcsbase_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15206,7 +14739,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Subversion.json.in" "6"
"Headers" "3"
"annotationhighlighter.h" "4"
"subversionclient.h" "4"
@@ -15259,7 +14791,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15270,7 +14801,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"TaskList.json.in" "6"
"Headers" "3"
"stopmonitoringhandler.h" "4"
"taskfile.h" "4"
@@ -15307,7 +14837,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15320,7 +14849,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"TextEditor.json.in" "6"
"syntax_shared" "3"
"syntax_shared.pri" "4"
"Headers" "3"
@@ -15410,7 +14938,6 @@
"tabsettingswidget.h" "4"
"textdocument.h" "4"
"textdocumentlayout.h" "4"
-"texteditor.h" "4"
"texteditor_global.h" "4"
"texteditor_p.h" "4"
"texteditoractionhandler.h" "4"
@@ -15501,7 +15028,6 @@
"tabsettingswidget.cpp" "4"
"textdocument.cpp" "4"
"textdocumentlayout.cpp" "4"
-"texteditor.cpp" "4"
"texteditor_test.cpp" "4"
"texteditoractionhandler.cpp" "4"
"texteditorconstants.cpp" "4"
@@ -15584,7 +15110,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15595,7 +15120,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Todo.json.in" "6"
"Headers" "3"
"constants.h" "4"
"cpptodoitemsscanner.h" "4"
@@ -15673,7 +15197,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15684,7 +15207,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"UpdateInfo.json.in" "6"
"Headers" "3"
"settingspage.h" "4"
"updateinfoplugin.h" "4"
@@ -15708,7 +15230,6 @@
"callgrindcostitem.h" "5"
"callgrindcycledetection.h" "5"
"callgrinddatamodel.h" "5"
-"callgrindfunction.h" "5"
"callgrindfunction_p.h" "5"
"callgrindfunctioncall.h" "5"
"callgrindfunctioncycle.h" "5"
@@ -15782,7 +15303,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15797,7 +15317,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Valgrind.json.in" "6"
"xmlprotocol" "3"
"xmlprotocol.pri" "4"
"Headers" "4"
@@ -15917,7 +15436,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -15932,7 +15450,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"VcsBase.json.in" "6"
"Headers" "3"
"wizard" "4"
"vcscommandpage.h" "5"
@@ -16048,7 +15565,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -16061,7 +15577,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"WebAssembly.json.in" "6"
"Headers" "3"
"webassembly_global.h" "4"
"webassemblyconstants.h" "4"
@@ -16115,7 +15630,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"rpath" "4"
@@ -16126,7 +15640,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"Welcome.json.in" "6"
"Headers" "3"
"introductionwidget.h" "4"
"Sources" "3"
@@ -16145,8 +15658,6 @@
"download@2x.png" "7"
"expandarrow.png" "7"
"expandarrow@2x.png" "7"
-"mode_welcome.png" "7"
-"mode_welcome@2x.png" "7"
"mode_welcome_mask.png" "7"
"mode_welcome_mask@2x.png" "7"
"new.png" "7"
@@ -16222,7 +15733,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"qtsupport_dependencies" "4"
@@ -16235,7 +15745,6 @@
"shared" "5"
"qtcreator_gui_pch.h" "6"
"Other files" "4"
-"WinRt.json.in" "6"
"Headers" "3"
"winrtconstants.h" "4"
"winrtdebugsupport.h" "4"
@@ -16326,7 +15835,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "3"
@@ -16469,11 +15977,9 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "3"
-"crashhandlersetup.h" "5"
"Sources" "3"
"crashhandlersetup.cpp" "5"
"clangbackendmain.cpp" "4"
@@ -16498,7 +16004,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "3"
@@ -16530,7 +16035,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "3"
@@ -16865,7 +16369,6 @@
"rpath" "4"
"rpath.pri" "5"
"Headers" "4"
-"qtcreator_pch.h" "6"
"qtcreator" "3"
"qtcreator.pri" "4"
"qtcreator_ide_branding" "4"
@@ -16873,7 +16376,6 @@
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"Other files" "4"
-"CMakeLists.txt" "6"
"Other files" "3"
"qml2puppet.qbs" "4"
"qtc-askpass" "2"
@@ -16887,15 +16389,12 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Sources" "3"
"qtc-askpass-main.cpp" "4"
"Other files" "3"
"qtc-askpass.qbs" "4"
-"qtpromaker" "2"
-"qtpromaker.pro" "3"
"qtcreatortool" "3"
"qtcreatortool.pri" "4"
"qtcreator" "4"
@@ -16905,7 +16404,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Sources" "3"
@@ -16923,7 +16421,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"rpath" "4"
"rpath.pri" "5"
"Headers" "3"
@@ -17008,7 +16505,6 @@
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"Other files" "4"
-"CMakeLists.txt" "6"
"Headers" "3"
"outputgenerator.h" "4"
"Sources" "3"
@@ -17038,7 +16534,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -17056,7 +16551,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -17077,7 +16571,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -17125,7 +16618,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17171,7 +16663,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17219,7 +16710,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "4"
@@ -17268,7 +16758,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17314,7 +16803,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17361,7 +16849,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17416,7 +16903,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17462,7 +16948,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "4"
@@ -17511,7 +16996,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "4"
@@ -17560,7 +17044,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17606,7 +17089,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17671,10 +17153,6 @@
"identifier-expansion.4.out.cpp" "6"
"identifier-expansion.5.cpp" "6"
"identifier-expansion.5.out.cpp" "6"
-"macro-test.cpp" "6"
-"macro-test.out.cpp" "6"
-"macro_expand.c" "6"
-"macro_expand.out.c" "6"
"macro_expand_1.cpp" "6"
"macro_expand_1.out.cpp" "6"
"macro_pounder_fn.c" "6"
@@ -17725,7 +17203,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17771,7 +17248,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "4"
@@ -17820,7 +17296,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "4"
@@ -17840,7 +17315,6 @@
"qtcreator_testvars" "6"
"qtcreator_testvars.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -17861,14 +17335,9 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
-"debuggerprotocol.h" "6"
-"simplifytype.h" "6"
-"watchdata.h" "6"
-"watchutils.h" "6"
"Sources" "4"
"debuggerprotocol.cpp" "6"
"simplifytype.cpp" "6"
@@ -17890,11 +17359,9 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
-"debuggerprotocol.h" "6"
"Sources" "4"
"debuggerprotocol.cpp" "6"
"tst_gdb.cpp" "5"
@@ -17911,7 +17378,6 @@
"qtcreator_testvars" "6"
"qtcreator_testvars.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -17931,11 +17397,9 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
-"debuggerprotocol.h" "6"
"Sources" "4"
"debuggerprotocol.cpp" "6"
"tst_protocol.cpp" "5"
@@ -17952,7 +17416,6 @@
"qtcreator_testvars" "6"
"qtcreator_testvars.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -17975,7 +17438,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -17995,7 +17457,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -18023,7 +17484,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "6"
@@ -18047,7 +17507,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "6"
@@ -18071,7 +17530,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "6"
@@ -18099,7 +17557,6 @@
"utils_dependencies" "8"
"utils_dependencies.pri" "9"
"Other files" "8"
-"CMakeLists.txt" "10"
"qttestrpath" "7"
"qttestrpath.pri" "8"
"Headers" "6"
@@ -18125,7 +17582,6 @@
"utils_dependencies" "8"
"utils_dependencies.pri" "9"
"Other files" "8"
-"CMakeLists.txt" "10"
"qttestrpath" "7"
"qttestrpath.pri" "8"
"Headers" "6"
@@ -18151,7 +17607,6 @@
"utils_dependencies" "8"
"utils_dependencies.pri" "9"
"Other files" "8"
-"CMakeLists.txt" "10"
"qttestrpath" "7"
"qttestrpath.pri" "8"
"Headers" "6"
@@ -18177,7 +17632,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
@@ -18203,7 +17657,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
@@ -18218,10 +17671,7 @@
"testdir" "6"
"spec.json" "7"
"testspecs" "6"
-"simplespec.json" "7"
"simplespec_experimental.json" "7"
-"spec1.json" "7"
-"spec2.json" "7"
"spec_wrong2.json" "7"
"spec_wrong3.json" "7"
"spec_wrong4.json" "7"
@@ -18242,11 +17692,9 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "5"
-"testplugin.h" "6"
"testplugin_global.h" "6"
"Sources" "5"
"testplugin.cpp" "6"
@@ -18272,11 +17720,9 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Headers" "3"
-"externaltool.h" "5"
"Sources" "3"
"externaltool.cpp" "5"
"tst_externaltooltest.cpp" "4"
@@ -18295,7 +17741,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -18338,7 +17783,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -18358,7 +17802,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -18377,7 +17820,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -18395,7 +17837,6 @@
"proitems.h" "5"
"prowriter.h" "5"
"qmake_global.h" "5"
-"qmakeevaluator.h" "5"
"qmakeevaluator_p.h" "5"
"qmakeglobals.h" "5"
"qmakeparser.h" "5"
@@ -18428,7 +17869,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -18462,7 +17902,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
@@ -18516,7 +17955,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
@@ -18602,20 +18040,11 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
"tst_ecmascript7.cpp" "6"
"Other files" "5"
-"arrow-functions.js" "7"
-"class.js" "7"
-"constructor.js" "7"
-"extends.js" "7"
-"let.js" "7"
-"super.js" "7"
-"template-strings.js" "7"
-"yield.js" "7"
"importscheck" "4"
"importscheck.pro" "5"
"languageutils-lib" "5"
@@ -18743,7 +18172,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
@@ -18773,7 +18201,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
@@ -19200,7 +18627,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Headers" "5"
@@ -19275,7 +18701,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"Sources" "5"
@@ -19305,7 +18730,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19347,7 +18771,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"utils_dependencies" "5"
@@ -19369,7 +18792,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19399,7 +18821,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19426,7 +18847,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -19445,7 +18865,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -19467,7 +18886,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -19485,7 +18903,6 @@
"qtcreator_testvars" "5"
"qtcreator_testvars.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -19509,7 +18926,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19531,7 +18947,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
@@ -19551,7 +18966,6 @@
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"Other files" "4"
-"CMakeLists.txt" "6"
"timelineabstractrenderer" "3"
"timelineabstractrenderer.pro" "4"
"qttest" "4"
@@ -19567,7 +18981,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19589,7 +19002,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19611,7 +19023,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19633,7 +19044,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19655,7 +19065,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19677,7 +19086,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19699,7 +19107,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19721,7 +19128,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19743,7 +19149,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19765,7 +19170,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19787,7 +19191,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19809,7 +19212,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19838,7 +19240,6 @@
"utils_dependencies" "5"
"utils_dependencies.pri" "6"
"Other files" "5"
-"CMakeLists.txt" "7"
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Sources" "3"
@@ -19860,7 +19261,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19880,7 +19280,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19900,7 +19299,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19920,7 +19318,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19940,7 +19337,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19960,7 +19356,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -19980,7 +19375,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -20000,7 +19394,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -20020,7 +19413,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -20040,7 +19432,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -20060,7 +19451,6 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Sources" "4"
@@ -20120,7 +19510,6 @@
"utils_dependencies" "7"
"utils_dependencies.pri" "8"
"Other files" "7"
-"CMakeLists.txt" "9"
"qttestrpath" "6"
"qttestrpath.pri" "7"
"valgrind_test" "5"
@@ -20132,7 +19521,6 @@
"callgrindcostitem.h" "8"
"callgrindcycledetection.h" "8"
"callgrinddatamodel.h" "8"
-"callgrindfunction.h" "8"
"callgrindfunction_p.h" "8"
"callgrindfunctioncall.h" "8"
"callgrindfunctioncycle.h" "8"
@@ -20245,7 +19633,6 @@
"callgrindcostitem.h" "8"
"callgrindcycledetection.h" "8"
"callgrinddatamodel.h" "8"
-"callgrindfunction.h" "8"
"callgrindfunction_p.h" "8"
"callgrindfunctioncall.h" "8"
"callgrindfunctioncycle.h" "8"
@@ -20385,10 +19772,6 @@
"qttestrpath" "4"
"qttestrpath.pri" "5"
"Headers" "3"
-"hostosinfo.h" "6"
-"qtcassert.h" "6"
-"fakevimactions.h" "6"
-"fakevimhandler.h" "6"
"Sources" "3"
"hostosinfo.cpp" "6"
"qtcassert.cpp" "6"
@@ -20500,16 +19883,6 @@
"testreader" "2"
"testreader.pro" "3"
"Headers" "3"
-"ioutils.h" "5"
-"profileevaluator.h" "5"
-"proitems.h" "5"
-"qmake_global.h" "5"
-"qmakeevaluator.h" "5"
-"qmakeevaluator_p.h" "5"
-"qmakeglobals.h" "5"
-"qmakeparser.h" "5"
-"qmakevfs.h" "5"
-"registry_p.h" "5"
"Sources" "3"
"ioutils.cpp" "5"
"profileevaluator.cpp" "5"
@@ -20548,11 +19921,9 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
-"themeselector.h" "6"
"Sources" "4"
"themeselector.cpp" "6"
"tst_manual_widgets_crumblepath.cpp" "5"
@@ -20563,7 +19934,6 @@
"design.creatortheme" "7"
"flat-dark.creatortheme" "7"
"flat-light.creatortheme" "7"
-"flat.creatortheme" "7"
"Other files" "4"
"crumblepath.qbs" "5"
"infolabel" "3"
@@ -20585,11 +19955,9 @@
"utils_dependencies" "6"
"utils_dependencies.pri" "7"
"Other files" "6"
-"CMakeLists.txt" "8"
"qttestrpath" "5"
"qttestrpath.pri" "6"
"Headers" "4"
-"themeselector.h" "6"
"Sources" "4"
"themeselector.cpp" "6"
"tst_manual_widgets_infolabel.cpp" "5"
@@ -20600,7 +19968,6 @@
"design.creatortheme" "7"
"flat-dark.creatortheme" "7"
"flat-light.creatortheme" "7"
-"flat.creatortheme" "7"
"Other files" "4"
"infolabel.qbs" "5"
"tools" "1"
@@ -20740,7 +20107,6 @@
"qtcreator_testvars" "4"
"qtcreator_testvars.pri" "5"
"Other files" "4"
-"CMakeLists.txt" "6"
"sqlite-lib" "3"
"sqlite-lib.pri" "4"
"sqlite" "4"
@@ -20799,13 +20165,11 @@
"mimetypes" "4"
"mimetypes.pri" "5"
"Headers" "5"
-"mimedatabase.h" "6"
"mimedatabase_p.h" "6"
"mimeglobpattern_p.h" "6"
"mimemagicrule_p.h" "6"
"mimemagicrulematcher_p.h" "6"
"mimeprovider_p.h" "6"
-"mimetype.h" "6"
"mimetype_p.h" "6"
"mimetypeparser_p.h" "6"
"Sources" "5"
@@ -20829,7 +20193,6 @@
"variant" "6"
"variant.hpp" "7"
"theme" "5"
-"theme.h" "6"
"theme_p.h" "6"
"tooltip" "5"
"effects.h" "6"
@@ -21202,20 +20565,12 @@
"collapse@2x.png" "8"
"compile_error_taskbar.png" "8"
"compile_error_taskbar@2x.png" "8"
-"crumblepath-segment-first-hover.png" "8"
-"crumblepath-segment-first-hover@2x.png" "8"
"crumblepath-segment-first.png" "8"
"crumblepath-segment-first@2x.png" "8"
-"crumblepath-segment-last-hover.png" "8"
-"crumblepath-segment-last-hover@2x.png" "8"
"crumblepath-segment-last.png" "8"
"crumblepath-segment-last@2x.png" "8"
-"crumblepath-segment-middle-hover.png" "8"
-"crumblepath-segment-middle-hover@2x.png" "8"
"crumblepath-segment-middle.png" "8"
"crumblepath-segment-middle@2x.png" "8"
-"crumblepath-segment-single-hover.png" "8"
-"crumblepath-segment-single-hover@2x.png" "8"
"crumblepath-segment-single.png" "8"
"crumblepath-segment-single@2x.png" "8"
"dark_fileicon.png" "8"
@@ -21264,26 +20619,18 @@
"fittoview@2x.png" "8"
"home.png" "8"
"home@2x.png" "8"
-"iconoverlay_add.png" "8"
-"iconoverlay_add@2x.png" "8"
"iconoverlay_add_background.png" "8"
"iconoverlay_add_background@2x.png" "8"
"iconoverlay_add_small.png" "8"
"iconoverlay_add_small@2x.png" "8"
-"iconoverlay_error.png" "8"
-"iconoverlay_error@2x.png" "8"
"iconoverlay_error_background.png" "8"
"iconoverlay_error_background@2x.png" "8"
"iconoverlay_reset.png" "8"
"iconoverlay_reset@2x.png" "8"
-"iconoverlay_warning.png" "8"
-"iconoverlay_warning@2x.png" "8"
"iconoverlay_warning_background.png" "8"
"iconoverlay_warning_background@2x.png" "8"
"info.png" "8"
"info@2x.png" "8"
-"inputfield.png" "8"
-"inputfield@2x.png" "8"
"inputfield_disabled.png" "8"
"inputfield_disabled@2x.png" "8"
"interrupt_small.png" "8"
@@ -21318,10 +20665,6 @@
"online@2x.png" "8"
"pan.png" "8"
"pan@2x.png" "8"
-"panel_button.png" "8"
-"panel_button@2x.png" "8"
-"panel_button_checked.png" "8"
-"panel_button_checked@2x.png" "8"
"panel_button_checked_hover.png" "8"
"panel_button_checked_hover@2x.png" "8"
"panel_button_hover.png" "8"
@@ -21719,13 +21062,11 @@
"mimetypes" "5"
"mimetypes.pri" "6"
"Headers" "6"
-"mimedatabase.h" "7"
"mimedatabase_p.h" "7"
"mimeglobpattern_p.h" "7"
"mimemagicrule_p.h" "7"
"mimemagicrulematcher_p.h" "7"
"mimeprovider_p.h" "7"
-"mimetype.h" "7"
"mimetype_p.h" "7"
"mimetypeparser_p.h" "7"
"Sources" "6"
@@ -21749,7 +21090,6 @@
"variant" "7"
"variant.hpp" "8"
"theme" "6"
-"theme.h" "7"
"theme_p.h" "7"
"tooltip" "6"
"effects.h" "7"
@@ -22122,20 +21462,12 @@
"collapse@2x.png" "9"
"compile_error_taskbar.png" "9"
"compile_error_taskbar@2x.png" "9"
-"crumblepath-segment-first-hover.png" "9"
-"crumblepath-segment-first-hover@2x.png" "9"
"crumblepath-segment-first.png" "9"
"crumblepath-segment-first@2x.png" "9"
-"crumblepath-segment-last-hover.png" "9"
-"crumblepath-segment-last-hover@2x.png" "9"
"crumblepath-segment-last.png" "9"
"crumblepath-segment-last@2x.png" "9"
-"crumblepath-segment-middle-hover.png" "9"
-"crumblepath-segment-middle-hover@2x.png" "9"
"crumblepath-segment-middle.png" "9"
"crumblepath-segment-middle@2x.png" "9"
-"crumblepath-segment-single-hover.png" "9"
-"crumblepath-segment-single-hover@2x.png" "9"
"crumblepath-segment-single.png" "9"
"crumblepath-segment-single@2x.png" "9"
"dark_fileicon.png" "9"
@@ -22184,26 +21516,18 @@
"fittoview@2x.png" "9"
"home.png" "9"
"home@2x.png" "9"
-"iconoverlay_add.png" "9"
-"iconoverlay_add@2x.png" "9"
"iconoverlay_add_background.png" "9"
"iconoverlay_add_background@2x.png" "9"
"iconoverlay_add_small.png" "9"
"iconoverlay_add_small@2x.png" "9"
-"iconoverlay_error.png" "9"
-"iconoverlay_error@2x.png" "9"
"iconoverlay_error_background.png" "9"
"iconoverlay_error_background@2x.png" "9"
"iconoverlay_reset.png" "9"
"iconoverlay_reset@2x.png" "9"
-"iconoverlay_warning.png" "9"
-"iconoverlay_warning@2x.png" "9"
"iconoverlay_warning_background.png" "9"
"iconoverlay_warning_background@2x.png" "9"
"info.png" "9"
"info@2x.png" "9"
-"inputfield.png" "9"
-"inputfield@2x.png" "9"
"inputfield_disabled.png" "9"
"inputfield_disabled@2x.png" "9"
"interrupt_small.png" "9"
@@ -22238,10 +21562,6 @@
"online@2x.png" "9"
"pan.png" "9"
"pan@2x.png" "9"
-"panel_button.png" "9"
-"panel_button@2x.png" "9"
-"panel_button_checked.png" "9"
-"panel_button_checked@2x.png" "9"
"panel_button_checked_hover.png" "9"
"panel_button_checked_hover@2x.png" "9"
"panel_button_hover.png" "9"
@@ -22339,10 +21659,8 @@
"detail" "8"
"bool_type.h" "9"
"impl.h" "9"
-"iterator.h" "9"
"iterator_fwd.h" "9"
"memory.h" "9"
-"node.h" "9"
"node_data.h" "9"
"node_iterator.h" "9"
"node_ref.h" "9"
@@ -22407,7 +21725,6 @@
"exceptions.cpp" "7"
"exp.cpp" "7"
"memory.cpp" "7"
-"node.cpp" "7"
"node_data.cpp" "7"
"nodebuilder.cpp" "7"
"nodeevents.cpp" "7"
@@ -22440,7 +21757,6 @@
"eventspy.h" "4"
"fakeprocess.h" "4"
"filesystem-utilities.h" "4"
-"google-using-declarations.h" "4"
"googletest.h" "4"
"gtest-creator-printing.h" "4"
"gtest-llvm-printing.h" "4"
@@ -22493,18 +21809,15 @@
"nodelistproperty-test.cpp" "4"
"processcreator-test.cpp" "4"
"processevents-utilities.cpp" "4"
-"projectstorage-test.cpp" "4"
"projectstoragesqlitefunctionregistry-test.cpp" "4"
"readandwritemessageblock-test.cpp" "4"
"sizedarray-test.cpp" "4"
"smallstring-test.cpp" "4"
-"sourcepath-test.cpp" "4"
"sourcepathcache-test.cpp" "4"
"sourcepathview-test.cpp" "4"
"spydummy.cpp" "4"
"sqlitealgorithms-test.cpp" "4"
"sqlitecolumn-test.cpp" "4"
-"sqlitedatabase-test.cpp" "4"
"sqlitedatabasebackend-test.cpp" "4"
"sqliteindex-test.cpp" "4"
"sqlitereadstatementmock.cpp" "4"
@@ -22523,15 +21836,12 @@
"Other files" "3"
"data" "4"
"complete_arrow.cpp" "5"
-"complete_completer_main.cpp" "5"
"complete_completer_main_unsaved.cpp" "5"
"complete_extractor_brief_comment.cpp" "5"
"complete_extractor_class.cpp" "5"
"complete_extractor_constructor.cpp" "5"
"complete_extractor_constructorMemberInitialization.cpp" "5"
"complete_extractor_enumeration.cpp" "5"
-"complete_extractor_function.cpp" "5"
-"complete_extractor_function_unsaved.cpp" "5"
"complete_extractor_function_unsaved_2.cpp" "5"
"complete_extractor_functionoverload.cpp" "5"
"complete_extractor_namespace.cpp" "5"
@@ -22540,13 +21850,11 @@
"complete_forwarding_header_1.h" "5"
"complete_forwarding_header_2.h" "5"
"complete_smartpointer.cpp" "5"
-"complete_target_header.h" "5"
"complete_target_header_changed.h" "5"
"complete_target_header_unsaved.h" "5"
"complete_testfile_1.cpp" "5"
"complete_translationunit_parse_error.cpp" "5"
"complete_withDotArrowCorrectionForForwardDeclaredClassPointer.cpp" "5"
-"complete_withDotArrowCorrectionForPointer.cpp" "5"
"complete_withDotArrowCorrectionForPointer_afterTyping.cpp" "5"
"complete_withDotArrowCorrectionForPointer_beforeTyping.cpp" "5"
"complete_withDotArrowCorrectionForPointerInitial.cpp" "5"
@@ -22562,16 +21870,13 @@
"completions_order.cpp" "5"
"cursor.cpp" "5"
"cursor.h" "5"
-"diagnostic_comparison_fixit.cpp" "5"
"diagnostic_comparison_fixit_expected1.cpp" "5"
"diagnostic_comparison_fixit_expected2.cpp" "5"
"diagnostic_diagnostic.cpp" "5"
-"diagnostic_diagnosticset.cpp" "5"
"diagnostic_diagnosticset_header.cpp" "5"
"diagnostic_diagnosticset_mainfile.cpp" "5"
"diagnostic_erroneous_header.h" "5"
"diagnostic_erroneous_source.cpp" "5"
-"diagnostic_semicolon_fixit.cpp" "5"
"diagnostic_semicolon_fixit_expected.cpp" "5"
"diagnostic_source_location.cpp" "5"
"diagnostic_source_range.cpp" "5"
@@ -22657,26 +21962,6 @@
"changes-4.0.2.md" "2"
"changes-4.0.3.md" "2"
"changes-4.1.0.md" "2"
-"changes-4.10.0.md" "2"
-"changes-4.10.1.md" "2"
-"changes-4.11.0.md" "2"
-"changes-4.11.1.md" "2"
-"changes-4.11.2.md" "2"
-"changes-4.12.0.md" "2"
-"changes-4.12.1.md" "2"
-"changes-4.12.2.md" "2"
-"changes-4.12.3.md" "2"
-"changes-4.12.4.md" "2"
-"changes-4.13.0.md" "2"
-"changes-4.13.1.md" "2"
-"changes-4.13.2.md" "2"
-"changes-4.13.3.md" "2"
-"changes-4.14.0.md" "2"
-"changes-4.14.1.md" "2"
-"changes-4.14.2.md" "2"
-"changes-4.15.0.md" "2"
-"changes-4.15.1.md" "2"
-"changes-4.15.2.md" "2"
"changes-4.2.0.md" "2"
"changes-4.2.1.md" "2"
"changes-4.2.2.md" "2"
@@ -22699,6 +21984,26 @@
"changes-4.9.0.md" "2"
"changes-4.9.1.md" "2"
"changes-4.9.2.md" "2"
+"changes-4.10.0.md" "2"
+"changes-4.10.1.md" "2"
+"changes-4.11.0.md" "2"
+"changes-4.11.1.md" "2"
+"changes-4.11.2.md" "2"
+"changes-4.12.0.md" "2"
+"changes-4.12.1.md" "2"
+"changes-4.12.2.md" "2"
+"changes-4.12.3.md" "2"
+"changes-4.12.4.md" "2"
+"changes-4.13.0.md" "2"
+"changes-4.13.1.md" "2"
+"changes-4.13.2.md" "2"
+"changes-4.13.3.md" "2"
+"changes-4.14.0.md" "2"
+"changes-4.14.1.md" "2"
+"changes-4.14.2.md" "2"
+"changes-4.15.0.md" "2"
+"changes-4.15.1.md" "2"
+"changes-4.15.2.md" "2"
"changes-5.0.0.md" "2"
"changes-5.0.1.md" "2"
"changes-5.0.2.md" "2"
@@ -22736,7 +22041,6 @@
"sqlite_sources" "3"
"sqlite-sources.qbs" "4"
"scripts" "1"
-"build.py" "2"
"build_plugin.py" "2"
"checkInstalledFiles.py" "2"
"clangCompleteAt.sh" "2"