Remove superfluous include paths from project files.

A lot of our build system files specify unneeded include
paths. These roughly fall into the following categories:
    a) Paths that are already set in more general files
       such as qtcreator.pri.
    b) Paths that serve no purpose at all, possibly
       left over from earlier versions of the project.
    c) Paths that act as workarounds for wrong include
       statements of the form '#include "xyz.h"', where
       xyz.h is not in the same directory as the including
      file.
This patch removes such path specifications and fixes the offending
include statements from case c).
Tested on Linux, Windows and OSX with qmake and qbs.

Change-Id: I039a8449f8a65df0d616b4c08081145c18ae4b15
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Christian Kandeler
2013-08-29 16:36:42 +02:00
parent 7c4d0d3bf3
commit 72d173829c
167 changed files with 388 additions and 523 deletions
-3
View File
@@ -13,11 +13,8 @@ Application {
return ["-Wl,-s"]
}
cpp.includePaths: [
"..",
"../libs",
"../shared/qtsingleapplication",
"../shared/qtlockedfile",
buildDirectory
]
Depends { name: "app_version_header" }
+1 -1
View File
@@ -27,7 +27,6 @@
**
****************************************************************************/
#include "qtsingleapplication.h"
#include "../tools/qtcreatorcrashhandler/crashhandlersetup.h"
#include <app/app_version.h>
@@ -35,6 +34,7 @@
#include <extensionsystem/pluginerroroverview.h>
#include <extensionsystem/pluginmanager.h>
#include <extensionsystem/pluginspec.h>
#include <qtsingleapplication.h>
#include <QDebug>
#include <QDir>
-4
View File
@@ -1,7 +1,3 @@
DEPENDPATH += $$PWD
INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/cppassert.h \
$$PWD/CPlusPlus.h \
+2 -2
View File
@@ -19,11 +19,11 @@ DynamicLibrary {
cpp.rpaths: qbs.targetOS.contains("osx")
? ["@loader_path/..", "@executable_path/.."]
: ["$ORIGIN", "$ORIGIN/.."]
cpp.includePaths: [ ".", ".." ]
cpp.includePaths: [path]
Export {
Depends { name: "cpp" }
cpp.includePaths: [ "." ]
cpp.includePaths: [path]
}
Group {
@@ -4,8 +4,6 @@ contains(CONFIG, dll) {
DEFINES += LANGUAGEUTILS_BUILD_STATIC_LIB
}
INCLUDEPATH += $$PWD/..
HEADERS += \
$$PWD/languageutils_global.h \
$$PWD/fakemetaobject.h \
-1
View File
@@ -4,7 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary {
name: "LanguageUtils"
cpp.includePaths: base.concat("../3rdparty/cplusplus")
cpp.defines: base.concat([
"LANGUAGEUTILS_BUILD_DIR"
])
-2
View File
@@ -4,8 +4,6 @@ contains(CONFIG, dll) {
DEFINES += QMLDEBUG_STATIC_LIB
}
INCLUDEPATH += $$PWD/..
HEADERS += \
$$PWD/qmlprofilereventlocation.h \
$$PWD/qmldebugclient.h \
+2 -2
View File
@@ -438,12 +438,12 @@
<customwidget>
<class>QmlEditorWidgets::ColorButton</class>
<extends>QToolButton</extends>
<header location="global">colorbutton.h</header>
<header location="global">qmleditorwidgets/colorbutton.h</header>
</customwidget>
<customwidget>
<class>QmlEditorWidgets::FontSizeSpinBox</class>
<extends>QSpinBox</extends>
<header location="global">fontsizespinbox.h</header>
<header location="global">qmleditorwidgets/fontsizespinbox.h</header>
</customwidget>
</customwidgets>
<resources/>
@@ -43,11 +43,11 @@
#include <QGraphicsEffect>
#include <QAction>
#include "contextpanetextwidget.h"
#include "easingcontextpane.h"
#include "contextpanewidgetimage.h"
#include "contextpanewidgetrectangle.h"
#include "customcolordialog.h"
#include "colorbutton.h"
#include <qmleditorwidgets/easingpane/easingcontextpane.h>
using namespace Utils;
@@ -300,7 +300,7 @@
<customwidget>
<class>QmlEditorWidgets::FileWidget</class>
<extends>QComboBox</extends>
<header location="global">filewidget.h</header>
<header location="global">qmleditorwidgets/filewidget.h</header>
</customwidget>
</customwidgets>
<resources>
@@ -285,7 +285,7 @@
<customwidget>
<class>QmlEditorWidgets::FileWidget</class>
<extends>QComboBox</extends>
<header location="global">filewidget.h</header>
<header location="global">qmleditorwidgets/filewidget.h</header>
</customwidget>
</customwidgets>
<resources>
@@ -30,9 +30,9 @@
#include "contextpanewidgetrectangle.h"
#include "ui_contextpanewidgetrectangle.h"
#include "contextpanewidget.h"
#include "customcolordialog.h"
#include <qmljs/qmljspropertyreader.h>
#include <qmljs/qmljsutils.h>
#include <customcolordialog.h>
#include <QDebug>
namespace QmlEditorWidgets {
@@ -298,12 +298,12 @@
<customwidget>
<class>QmlEditorWidgets::ColorButton</class>
<extends>QToolButton</extends>
<header location="global">colorbutton.h</header>
<header location="global">qmleditorwidgets/colorbutton.h</header>
</customwidget>
<customwidget>
<class>QmlEditorWidgets::GradientLine</class>
<extends>QWidget</extends>
<header location="global">gradientline.h</header>
<header location="global">qmleditorwidgets/gradientline.h</header>
<container>1</container>
</customwidget>
</customwidgets>
@@ -1,5 +1,4 @@
VPATH += $$PWD
INCLUDEPATH += $$PWD
SOURCES += $$PWD/easinggraph.cpp \
$$PWD/easingcontextpane.cpp
@@ -1,7 +1,5 @@
QT += script declarative
INCLUDEPATH += $$PWD
contains(CONFIG, dll) {
DEFINES += BUILD_QMLEDITORWIDGETS_LIB
} else {
@@ -4,7 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary {
name: "QmlEditorWidgets"
cpp.includePaths: base.concat(easingPane.prefix)
cpp.defines: base.concat([
"QWEAKPOINTER_ENABLE_ARROW",
"BUILD_QMLEDITORWIDGETS_LIB"
-2
View File
@@ -6,8 +6,6 @@ contains(CONFIG, dll) {
include(parser/parser.pri)
INCLUDEPATH += $$PWD/..
HEADERS += \
$$PWD/qmljs_global.h \
$$PWD/qmljsbind.h \
-1
View File
@@ -4,7 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary {
name: "QmlJS"
cpp.includePaths: base.concat("parser")
cpp.defines: base.concat([
"QMLJS_BUILD_DIR"
])
-1
View File
@@ -4,7 +4,6 @@ dll {
DEFINES += QTCREATOR_UTILS_STATIC_LIB
}
INCLUDEPATH += $$PWD
QT += script network
CONFIG += exceptions # used by portlist.cpp, textfileformat.cpp, and ssh/*
+3 -1
View File
@@ -26,7 +26,7 @@ Product {
if (qbs.buildVariant == "release" && (qbs.toolchain.contains("gcc") || qbs.toolchain.contains("mingw")))
return ["-Wl,-s"]
}
cpp.includePaths: [ ".", ".." ]
cpp.includePaths: [path]
Group {
name: "PluginSpec"
@@ -47,5 +47,7 @@ Product {
Export {
Depends { name: "ExtensionSystem" }
Depends { name: "cpp" }
cpp.includePaths: [path]
}
}
-1
View File
@@ -22,7 +22,6 @@ QtcPlugin {
property bool enable: false
pluginspecreplacements: ({"ANDROID_EXPERIMENTAL_STR": (enable ? "false": "true")})
cpp.includePaths: base.concat("../../shared")
cpp.defines: base.concat(project.buildQbsProjectManager ? ['HAVE_QBS'] : [])
files: [
@@ -30,8 +30,8 @@
#include "actioncontainer_p.h"
#include "actionmanager.h"
#include "coreconstants.h"
#include "id.h"
#include <coreplugin/coreconstants.h>
#include <coreplugin/id.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
@@ -29,10 +29,10 @@
#include "actionmanager.h"
#include "actionmanager_p.h"
#include "mainwindow.h"
#include "actioncontainer_p.h"
#include "command_p.h"
#include "id.h"
#include <coreplugin/id.h>
#include <coreplugin/mainwindow.h>
#include <utils/qtcassert.h>
@@ -29,8 +29,8 @@
#include "command_p.h"
#include "icontext.h"
#include "id.h"
#include <coreplugin/icontext.h>
#include <coreplugin/id.h>
#include <utils/hostosinfo.h>
@@ -28,9 +28,9 @@
****************************************************************************/
#include "commandmappings.h"
#include "shortcutsettings.h"
#include "ui_commandmappings.h"
#include "commandsfile.h"
#include <coreplugin/dialogs/shortcutsettings.h>
#include <utils/hostosinfo.h>
#include <utils/headerviewstretcher.h>
@@ -28,8 +28,8 @@
****************************************************************************/
#include "commandsfile.h"
#include "shortcutsettings.h"
#include "command_p.h"
#include <coreplugin/dialogs/shortcutsettings.h>
#include <app/app_version.h>
+2 -2
View File
@@ -28,16 +28,16 @@
****************************************************************************/
#include "coreplugin.h"
#include "actionmanager.h"
#include "designmode.h"
#include "editmode.h"
#include "editormanager.h"
#include "fileiconprovider.h"
#include "helpmanager.h"
#include "mainwindow.h"
#include "mimedatabase.h"
#include "modemanager.h"
#include "infobar.h"
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/editormanager/editormanager.h>
#include <utils/savefile.h>
-4
View File
@@ -12,10 +12,6 @@ greaterThan(QT_MAJOR_VERSION, 4) {
include(../../qtcreatorplugin.pri)
include(../../shared/scriptwrapper/scriptwrapper.pri)
win32-msvc*:QMAKE_CXXFLAGS += -wd4251 -wd4290 -wd4250
INCLUDEPATH += dialogs \
actionmanager \
editormanager \
progressmanager
SOURCES += mainwindow.cpp \
editmode.cpp \
tabpositionindicator.cpp \
-9
View File
@@ -15,15 +15,6 @@ QtcPlugin {
Depends { name: "Aggregation" }
Depends { name: "app_version_header" }
cpp.includePaths: base.concat([
"../..",
"../../shared/scriptwrapper",
"dialogs",
"editormanager",
"progressmanager",
"actionmanager"
])
cpp.dynamicLibraries: {
if (qbs.targetOS.contains("windows")) return [
"ole32",
+2 -2
View File
@@ -28,8 +28,8 @@
****************************************************************************/
#include "iwizard.h"
#include "icore.h"
#include "featureprovider.h"
#include <coreplugin/icore.h>
#include <coreplugin/featureprovider.h>
#include <extensionsystem/pluginmanager.h>
@@ -27,11 +27,11 @@
**
****************************************************************************/
#include "fileiconprovider.h"
#include "readonlyfilesdialog.h"
#include "ui_readonlyfilesdialog.h"
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/fileiconprovider.h>
#include <coreplugin/icore.h>
#include <coreplugin/idocument.h>
#include <coreplugin/iversioncontrol.h>
@@ -29,7 +29,7 @@
#include "settingsdialog.h"
#include "icore.h"
#include <coreplugin/icore.h>
#include <extensionsystem/pluginmanager.h>
#include <utils/hostosinfo.h>
@@ -28,14 +28,14 @@
****************************************************************************/
#include "shortcutsettings.h"
#include "actionmanager/actionmanager.h"
#include "actionmanager/command.h"
#include "command_p.h"
#include "commandsfile.h"
#include "coreconstants.h"
#include "documentmanager.h"
#include "icore.h"
#include "id.h"
#include <coreplugin/coreconstants.h>
#include <coreplugin/documentmanager.h>
#include <coreplugin/icore.h>
#include <coreplugin/id.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/actionmanager/command.h>
#include <coreplugin/actionmanager/command_p.h>
#include <coreplugin/actionmanager/commandsfile.h>
#include <QKeyEvent>
#include <QFileDialog>
+6 -6
View File
@@ -29,17 +29,17 @@
#include "documentmanager.h"
#include "editormanager.h"
#include "icore.h"
#include "ieditor.h"
#include "ieditorfactory.h"
#include "iexternaleditor.h"
#include "idocument.h"
#include "mimedatabase.h"
#include "saveitemsdialog.h"
#include "coreconstants.h"
#include "dialogs/readonlyfilesdialog.h"
#include <coreplugin/dialogs/readonlyfilesdialog.h>
#include <coreplugin/dialogs/saveitemsdialog.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/editormanager/ieditorfactory.h>
#include <coreplugin/editormanager/iexternaleditor.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
+2 -2
View File
@@ -28,14 +28,14 @@
****************************************************************************/
#include "editmode.h"
#include "editormanager.h"
#include "coreconstants.h"
#include "modemanager.h"
#include "minisplitter.h"
#include "outputpane.h"
#include "navigationwidget.h"
#include "rightpane.h"
#include "ieditor.h"
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <QLatin1String>
#include <QHBoxLayout>
@@ -29,7 +29,7 @@
#include "documentmodel.h"
#include "ieditor.h"
#include "idocument.h"
#include <coreplugin/idocument.h>
#include <utils/qtcassert.h>
@@ -29,34 +29,34 @@
#include "editormanager.h"
#include "editorview.h"
#include "findplaceholder.h"
#include "openeditorswindow.h"
#include "openeditorsview.h"
#include "documentmodel.h"
#include "openwithdialog.h"
#include "outputpane.h"
#include "outputpanemanager.h"
#include "rightpane.h"
#include "documentmanager.h"
#include "icore.h"
#include "ieditor.h"
#include "iversioncontrol.h"
#include "mimedatabase.h"
#include "vcsmanager.h"
#include <coreplugin/actionmanager/actioncontainer.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/coreconstants.h>
#include <coreplugin/dialogs/openwithdialog.h>
#include <coreplugin/dialogs/readonlyfilesdialog.h>
#include <coreplugin/documentmanager.h>
#include <coreplugin/editormanager/ieditorfactory.h>
#include <coreplugin/editormanager/iexternaleditor.h>
#include <coreplugin/editortoolbar.h>
#include <coreplugin/fileutils.h>
#include <coreplugin/findplaceholder.h>
#include <coreplugin/icore.h>
#include <coreplugin/icorelistener.h>
#include <coreplugin/infobar.h>
#include <coreplugin/iversioncontrol.h>
#include <coreplugin/mimedatabase.h>
#include <coreplugin/modemanager.h>
#include <coreplugin/outputpane.h>
#include <coreplugin/outputpanemanager.h>
#include <coreplugin/rightpane.h>
#include <coreplugin/settingsdatabase.h>
#include <coreplugin/variablemanager.h>
#include <coreplugin/dialogs/readonlyfilesdialog.h>
#include <coreplugin/vcsmanager.h>
#include <extensionsystem/pluginmanager.h>
@@ -29,13 +29,13 @@
#include "editorview.h"
#include "editormanager.h"
#include "icore.h"
#include "minisplitter.h"
#include "documentmodel.h"
#include <coreplugin/editortoolbar.h>
#include <coreplugin/coreconstants.h>
#include <coreplugin/icore.h>
#include <coreplugin/infobar.h>
#include <coreplugin/minisplitter.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/findplaceholder.h>
@@ -31,7 +31,7 @@
#include "documentmodel.h"
#include "editormanager.h"
#include "editorview.h"
#include "idocument.h"
#include <coreplugin/idocument.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
@@ -28,7 +28,7 @@
****************************************************************************/
#include "systemeditor.h"
#include "id.h"
#include <coreplugin/id.h>
#include <QStringList>
#include <QUrl>
+11 -11
View File
@@ -28,32 +28,21 @@
****************************************************************************/
#include "mainwindow.h"
#include "actioncontainer.h"
#include "command.h"
#include "actionmanager.h"
#include "actionmanager_p.h"
#include "icore.h"
#include "coreconstants.h"
#include "editormanager.h"
#include "toolsettings.h"
#include "mimetypesettings.h"
#include "fancytabwidget.h"
#include "documentmanager.h"
#include "generalsettings.h"
#include "helpmanager.h"
#include "ieditor.h"
#include "idocumentfactory.h"
#include "messagemanager.h"
#include "modemanager.h"
#include "mimedatabase.h"
#include "newdialog.h"
#include "outputpanemanager.h"
#include "plugindialog.h"
#include "progressmanager_p.h"
#include "progressview.h"
#include "shortcutsettings.h"
#include "vcsmanager.h"
#include "settingsdialog.h"
#include "variablemanager.h"
#include "versiondialog.h"
#include "statusbarmanager.h"
@@ -71,8 +60,19 @@
#endif
#include <app/app_version.h>
#include <coreplugin/actionmanager/actioncontainer.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/actionmanager/actionmanager_p.h>
#include <coreplugin/actionmanager/command.h>
#include <coreplugin/dialogs/newdialog.h>
#include <coreplugin/dialogs/settingsdialog.h>
#include <coreplugin/dialogs/shortcutsettings.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/icorelistener.h>
#include <coreplugin/inavigationwidgetfactory.h>
#include <coreplugin/progressmanager/progressmanager_p.h>
#include <coreplugin/progressmanager/progressview.h>
#include <coreplugin/settingsdatabase.h>
#include <utils/historycompleter.h>
#include <utils/hostosinfo.h>
+3 -3
View File
@@ -28,14 +28,14 @@
****************************************************************************/
#include "coreconstants.h"
#include "editormanager.h"
#include "icore.h"
#include "ieditorfactory.h"
#include "iexternaleditor.h"
#include "mimedatabase.h"
#include "mimetypemagicdialog.h"
#include "mimetypesettings.h"
#include "ui_mimetypesettingspage.h"
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditorfactory.h>
#include <coreplugin/editormanager/iexternaleditor.h>
#include <QAbstractTableModel>
#include <QCoreApplication>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef MIMETYPESETTINGSPAGE_H
#define MIMETYPESETTINGSPAGE_H
#include "ioptionspage.h"
#include <coreplugin/dialogs/ioptionspage.h>
namespace Core {
namespace Internal {
+1 -1
View File
@@ -28,7 +28,7 @@
****************************************************************************/
#include "textdocument.h"
#include "editormanager.h"
#include <coreplugin/editormanager/editormanager.h>
#include <QDebug>
#include <QTextCodec>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef TOOLSETTINGS_H
#define TOOLSETTINGS_H
#include "ioptionspage.h"
#include <coreplugin/dialogs/ioptionspage.h>
#include <QPointer>
+3 -3
View File
@@ -31,12 +31,12 @@
#include "iversioncontrol.h"
#include "icore.h"
#include "documentmanager.h"
#include "editormanager.h"
#include "ieditor.h"
#include "idocument.h"
#include "infobar.h"
#include "addtovcsdialog.h"
#include <coreplugin/dialogs/addtovcsdialog.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <vcsbase/vcsbaseconstants.h>
#include <extensionsystem/pluginmanager.h>
+1 -1
View File
@@ -9,8 +9,8 @@ QtcTool {
submodules: ["gui", "network"]
}
Depends { name: "Core" }
Depends { name: "CppTools" }
cpp.includePaths: ["../../"]
cpp.rpaths: [
"$ORIGIN/../lib/qtcreator",
"$ORIGIN/../lib/qtcreator/plugins",
+1 -1
View File
@@ -216,7 +216,7 @@ p, li { white-space: pre-wrap; }
<customwidget>
<class>CodePaster::ColumnIndicatorTextEdit</class>
<extends>QTextEdit</extends>
<header>columnindicatortextedit.h</header>
<header location="global">cpaster/columnindicatortextedit.h</header>
</customwidget>
</customwidgets>
<tabstops>
-2
View File
@@ -14,8 +14,6 @@ QtcPlugin {
Depends { name: "TextEditor" }
Depends { name: "ProjectExplorer" }
cpp.includePaths: base.concat("../../libs/3rdparty")
files: [
"cppautocompleter.cpp",
"cppautocompleter.h",
-1
View File
@@ -10,4 +10,3 @@ SOURCES += $$PWD/cdbengine.cpp \
FORMS += cdb/cdboptionspagewidget.ui
INCLUDEPATH*=$$PWD
+20 -19
View File
@@ -29,28 +29,29 @@
#include "cdbengine.h"
#include "breakhandler.h"
#include "bytearrayinputstream.h"
#include "cdboptionspage.h"
#include "cdbparsehelpers.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggermainwindow.h"
#include "debuggerstartparameters.h"
#include "debuggertooltipmanager.h"
#include "disassembleragent.h"
#include "disassemblerlines.h"
#include "memoryagent.h"
#include "moduleshandler.h"
#include "registerhandler.h"
#include "stackhandler.h"
#include "threadshandler.h"
#include "watchhandler.h"
#include "shared/cdbsymbolpathlisteditor.h"
#include "shared/hostutils.h"
#include "procinterrupt.h"
#include "sourceutils.h"
#include <debugger/breakhandler.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggermainwindow.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggertooltipmanager.h>
#include <debugger/disassembleragent.h>
#include <debugger/disassemblerlines.h>
#include <debugger/memoryagent.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/threadshandler.h>
#include <debugger/watchhandler.h>
#include <debugger/procinterrupt.h>
#include <debugger/sourceutils.h>
#include <debugger/shared/cdbsymbolpathlisteditor.h>
#include <debugger/shared/hostutils.h>
#include <coreplugin/icore.h>
#include <projectexplorer/taskhub.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef DEBUGGER_CDBENGINE_H
#define DEBUGGER_CDBENGINE_H
#include "debuggerengine.h"
#include <debugger/debuggerengine.h>
#include <QSharedPointer>
#include <QProcess>
+5 -5
View File
@@ -28,12 +28,12 @@
****************************************************************************/
#include "cdboptionspage.h"
#include "commonoptionspage.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerinternalconstants.h"
#include "cdbengine.h"
#include "cdbsymbolpathlisteditor.h"
#include <debugger/commonoptionspage.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerinternalconstants.h>
#include <debugger/shared/cdbsymbolpathlisteditor.h>
#include <coreplugin/icore.h>
+5 -4
View File
@@ -30,10 +30,11 @@
#include "cdbparsehelpers.h"
#include "bytearrayinputstream.h"
#include "debuggerprotocol.h"
#include "disassemblerlines.h"
#include "shared/hostutils.h"
#include "threaddata.h"
#include <debugger/debuggerprotocol.h>
#include <debugger/disassemblerlines.h>
#include <debugger/shared/hostutils.h>
#include <debugger/threaddata.h>
#include <utils/qtcassert.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef CDBPARSEHELPERS_H
#define CDBPARSEHELPERS_H
#include "breakpoint.h"
#include <debugger/breakpoint.h>
#include <QPair>
+1 -7
View File
@@ -18,12 +18,7 @@ QtcPlugin {
Depends { name: "QtcSsh" }
Depends { name: "Utils" }
cpp.includePaths: base.concat([
"shared",
lldblib.prefix,
"../../shared/json",
"../../shared/registryaccess"
])
cpp.includePaths: base.concat(["../../shared/registryaccess"])
pluginRecommends: [
"CppEditor"
@@ -283,6 +278,5 @@ QtcPlugin {
Export {
Depends { name: "cpp" }
Depends { name: "QtcSsh" }
cpp.includePaths: ["."]
}
}
+1 -1
View File
@@ -40,12 +40,12 @@
#include "disassembleragent.h"
#include "memoryagent.h"
#include "moduleshandler.h"
#include "peutils.h"
#include "registerhandler.h"
#include "sourcefileshandler.h"
#include "stackhandler.h"
#include "threadshandler.h"
#include "watchhandler.h"
#include <debugger/shared/peutils.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
+1 -1
View File
@@ -61,8 +61,8 @@
#include "debuggertooltipmanager.h"
#include "localsandexpressionswindow.h"
#include "loadcoredialog.h"
#include "hostutils.h"
#include "sourceutils.h"
#include <debugger/shared/hostutils.h>
#include "snapshothandler.h"
#include "threadshandler.h"
+1 -1
View File
@@ -42,7 +42,7 @@
#include "breakhandler.h"
#ifdef Q_OS_WIN
# include "peutils.h"
# include "shared/peutils.h"
# include <utils/winutils.h>
#endif
@@ -29,11 +29,11 @@
#include "abstractplaingdbadapter.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <utils/qtcassert.h>
@@ -29,9 +29,9 @@
#include "attachgdbadapter.h"
#include "debuggerprotocol.h"
#include "debuggerstringutils.h"
#include "debuggerstartparameters.h"
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggerstartparameters.h>
#include <utils/qtcassert.h>
@@ -29,13 +29,13 @@
#include "gdbengine.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "sourceutils.h"
#include "stackhandler.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/sourceutils.h>
#include <debugger/stackhandler.h>
#include <coreplugin/icore.h>
#include <projectexplorer/projectexplorerconstants.h>
+4 -4
View File
@@ -29,10 +29,10 @@
#include "coregdbadapter.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include <debugger/debuggercore.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <utils/qtcassert.h>
+26 -24
View File
@@ -29,10 +29,6 @@
#include "gdbengine.h"
#include "debuggerstartparameters.h"
#include "debuggerinternalconstants.h"
#include "debuggerruncontrolfactory.h"
#include "disassemblerlines.h"
#include "attachgdbadapter.h"
#include "coregdbadapter.h"
#include "localplaingdbadapter.h"
@@ -40,28 +36,34 @@
#include "remotegdbserveradapter.h"
#include "remoteplaingdbadapter.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggermainwindow.h"
#include "debuggerplugin.h"
#include "debuggerprotocol.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include "disassembleragent.h"
#include "gdboptionspage.h"
#include "memoryagent.h"
#include "sourceutils.h"
#include "breakhandler.h"
#include "moduleshandler.h"
#include "registerhandler.h"
#include "sourcefileshandler.h"
#include "stackhandler.h"
#include "threadshandler.h"
#include "debuggersourcepathmappingwidget.h"
#include "hostutils.h"
#include "logwindow.h"
#include "procinterrupt.h"
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerinternalconstants.h>
#include <debugger/debuggerruncontrolfactory.h>
#include <debugger/disassemblerlines.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggermainwindow.h>
#include <debugger/debuggerplugin.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggertooltipmanager.h>
#include <debugger/disassembleragent.h>
#include <debugger/memoryagent.h>
#include <debugger/sourceutils.h>
#include <debugger/breakhandler.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/sourcefileshandler.h>
#include <debugger/stackhandler.h>
#include <debugger/threadshandler.h>
#include <debugger/debuggersourcepathmappingwidget.h>
#include <debugger/logwindow.h>
#include <debugger/procinterrupt.h>
#include <debugger/shared/hostutils.h>
#include <coreplugin/icore.h>
#include <projectexplorer/taskhub.h>
+3 -3
View File
@@ -30,10 +30,10 @@
#ifndef DEBUGGER_GDBENGINE_H
#define DEBUGGER_GDBENGINE_H
#include "debuggerengine.h"
#include <debugger/debuggerengine.h>
#include "watchhandler.h"
#include "watchutils.h"
#include <debugger/watchhandler.h>
#include <debugger/watchutils.h>
#include <coreplugin/id.h>
+4 -4
View File
@@ -28,10 +28,10 @@
****************************************************************************/
#include "gdboptionspage.h"
#include "commonoptionspage.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerinternalconstants.h"
#include <debugger/commonoptionspage.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerinternalconstants.h>
#include <coreplugin/icore.h>
+2 -2
View File
@@ -29,8 +29,8 @@
#include "localgdbprocess.h"
#include "procinterrupt.h"
#include "debuggerconstants.h"
#include <debugger/procinterrupt.h>
#include <debugger/debuggerconstants.h>
#include <utils/qtcprocess.h>
@@ -29,8 +29,8 @@
#include "localplaingdbadapter.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
@@ -32,7 +32,7 @@
#include "abstractplaingdbadapter.h"
#include "localgdbprocess.h"
#include <outputcollector.h>
#include <debugger/outputcollector.h>
namespace Debugger {
namespace Internal {
+6 -6
View File
@@ -29,13 +29,13 @@
#include "gdbengine.h"
#include "debuggerprotocol.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggertooltipmanager.h>
#include "stackhandler.h"
#include <debugger/stackhandler.h>
#include <utils/qtcassert.h>
@@ -29,11 +29,11 @@
#include "remotegdbserveradapter.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
@@ -28,7 +28,7 @@
****************************************************************************/
#include "remoteplaingdbadapter.h"
#include "debuggerstartparameters.h"
#include <debugger/debuggerstartparameters.h>
#include <utils/qtcassert.h>
@@ -29,11 +29,11 @@
#include "startgdbserverdialog.h"
#include "debuggermainwindow.h"
#include "debuggerplugin.h"
#include "debuggerkitinformation.h"
#include "debuggerruncontrolfactory.h"
#include "debuggerstartparameters.h"
#include <debugger/debuggermainwindow.h>
#include <debugger/debuggerplugin.h>
#include <debugger/debuggerkitinformation.h>
#include <debugger/debuggerruncontrolfactory.h>
#include <debugger/debuggerstartparameters.h>
#include <projectexplorer/kitchooser.h>
#include <projectexplorer/devicesupport/deviceprocesslist.h>
+5 -5
View File
@@ -29,11 +29,11 @@
#include "termgdbadapter.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "shared/hostutils.h"
#include <debugger/debuggercore.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/shared/hostutils.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
-2
View File
@@ -1,5 +1,3 @@
HEADERS += $$PWD/lldbengine.h
SOURCES += $$PWD/lldbengine.cpp
INCLUDEPATH *= $$PWD
+17 -17
View File
@@ -29,24 +29,24 @@
#include "lldbengine.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerdialogs.h"
#include "debuggerplugin.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerdialogs.h>
#include <debugger/debuggerplugin.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggertooltipmanager.h>
#include "breakhandler.h"
#include "disassemblerlines.h"
#include "moduleshandler.h"
#include "registerhandler.h"
#include "stackhandler.h"
#include "sourceutils.h"
#include "threadshandler.h"
#include "watchhandler.h"
#include "watchutils.h"
#include <debugger/breakhandler.h>
#include <debugger/disassemblerlines.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/sourceutils.h>
#include <debugger/threadshandler.h>
#include <debugger/watchhandler.h>
#include <debugger/watchutils.h>
#include <utils/qtcassert.h>
#include <utils/savedaction.h>
+3 -3
View File
@@ -30,9 +30,9 @@
#ifndef DEBUGGER_LLDBENGINE
#define DEBUGGER_LLDBENGINE
#include "debuggerengine.h"
#include "disassembleragent.h"
#include "memoryagent.h"
#include <debugger/debuggerengine.h>
#include <debugger/disassembleragent.h>
#include <debugger/memoryagent.h>
#include <QPointer>
#include <QProcess>
@@ -30,11 +30,11 @@
#ifndef IPCENGINEGUEST_H
#define IPCENGINEGUEST_H
#include "breakhandler.h"
#include "debuggerengine.h"
#include "disassemblerlines.h"
#include "stackhandler.h"
#include "threadshandler.h"
#include <debugger/breakhandler.h>
#include <debugger/debuggerengine.h>
#include <debugger/disassemblerlines.h>
#include <debugger/stackhandler.h>
#include <debugger/threadshandler.h>
#include <QQueue>
#include <QThread>
+14 -14
View File
@@ -30,20 +30,20 @@
#include "ipcenginehost.h"
#include "ipcengineguest.h"
#include "debuggerstartparameters.h"
#include "breakhandler.h"
#include "breakpoint.h"
#include "disassemblerlines.h"
#include "moduleshandler.h"
#include "registerhandler.h"
#include "stackhandler.h"
#include "watchhandler.h"
#include "watchutils.h"
#include "threadshandler.h"
#include "disassembleragent.h"
#include "memoryagent.h"
#include "debuggerstreamops.h"
#include "debuggercore.h"
#include <debugger/debuggerstartparameters.h>
#include <debugger/breakhandler.h>
#include <debugger/breakpoint.h>
#include <debugger/disassemblerlines.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/watchhandler.h>
#include <debugger/watchutils.h>
#include <debugger/threadshandler.h>
#include <debugger/disassembleragent.h>
#include <debugger/memoryagent.h>
#include <debugger/debuggerstreamops.h>
#include <debugger/debuggercore.h>
#include <utils/qtcassert.h>
+5 -5
View File
@@ -30,11 +30,11 @@
#ifndef DEBUGGER_IPCENGINE_HOST_H
#define DEBUGGER_IPCENGINE_HOST_H
#include "debuggerengine.h"
#include "threadshandler.h"
#include "stackhandler.h"
#include "breakhandler.h"
#include "sourceagent.h"
#include <debugger/debuggerengine.h>
#include <debugger/threadshandler.h>
#include <debugger/stackhandler.h>
#include <debugger/breakhandler.h>
#include <debugger/sourceagent.h>
#include <QQueue>
#include <QVariant>
+16 -16
View File
@@ -29,23 +29,23 @@
#include "lldbenginehost.h"
#include "debuggerstartparameters.h"
#include "debuggeractions.h"
#include "debuggerconstants.h"
#include "debuggerdialogs.h"
#include "debuggerplugin.h"
#include "debuggerstringutils.h"
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggerconstants.h>
#include <debugger/debuggerdialogs.h>
#include <debugger/debuggerplugin.h>
#include <debugger/debuggerstringutils.h>
#include "breakhandler.h"
#include "breakpoint.h"
#include "moduleshandler.h"
#include "registerhandler.h"
#include "stackhandler.h"
#include "watchhandler.h"
#include "watchutils.h"
#include "threadshandler.h"
#include "disassembleragent.h"
#include "memoryagent.h"
#include <debugger/breakhandler.h>
#include <debugger/breakpoint.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/watchhandler.h>
#include <debugger/watchutils.h>
#include <debugger/threadshandler.h>
#include <debugger/disassembleragent.h>
#include <debugger/memoryagent.h>
#include <coreplugin/icore.h>
#include <utils/qtcassert.h>
@@ -28,8 +28,8 @@
****************************************************************************/
#include "lldboptionspage.h"
#include "debuggerconstants.h"
#include "debuggerinternalconstants.h"
#include <debugger/debuggerconstants.h>
#include <debugger/debuggerinternalconstants.h>
#include <coreplugin/icore.h>
+15 -15
View File
@@ -29,22 +29,22 @@
#include "pdbengine.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerdialogs.h"
#include "debuggerplugin.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerdialogs.h>
#include <debugger/debuggerplugin.h>
#include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggertooltipmanager.h>
#include "breakhandler.h"
#include "moduleshandler.h"
#include "registerhandler.h"
#include "stackhandler.h"
#include "sourceutils.h"
#include "watchhandler.h"
#include "watchutils.h"
#include <debugger/breakhandler.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/sourceutils.h>
#include <debugger/watchhandler.h>
#include <debugger/watchutils.h>
#include <utils/qtcassert.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef DEBUGGER_PDBENGINE_H
#define DEBUGGER_PDBENGINE_H
#include "debuggerengine.h"
#include <debugger/debuggerengine.h>
#include <QProcess>
#include <QQueue>
@@ -30,7 +30,7 @@
#ifndef BASEQMLDEBUGGERCLIENT_H
#define BASEQMLDEBUGGERCLIENT_H
#include "debuggerengine.h"
#include <debugger/debuggerengine.h>
#include <qmldebug/qmldebugclient.h>
namespace Debugger {
+1 -1
View File
@@ -29,7 +29,7 @@
#include "qmladapter.h"
#include "debuggerstringutils.h"
#include <debugger/debuggerstringutils.h>
#include "qmlengine.h"
#include "qmlv8debuggerclient.h"
#include "qscriptdebuggerclient.h"
+4 -4
View File
@@ -28,11 +28,11 @@
****************************************************************************/
#include "qmlcppengine.h"
#include "debuggerruncontrolfactory.h"
#include "debuggerstartparameters.h"
#include "stackhandler.h"
#include "qmlengine.h"
#include "watchhandler.h"
#include <debugger/debuggerruncontrolfactory.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/stackhandler.h>
#include <debugger/watchhandler.h>
#include <utils/qtcassert.h>
#include <texteditor/itexteditor.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef QMLCPPENGINE_H
#define QMLCPPENGINE_H
#include "debuggerengine.h"
#include <debugger/debuggerengine.h>
namespace Debugger {
namespace Internal {
+14 -14
View File
@@ -31,21 +31,21 @@
#include "baseqmldebuggerclient.h"
#include "qmlinspectoragent.h"
#include "debuggerstartparameters.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerinternalconstants.h"
#include "debuggermainwindow.h"
#include "debuggerrunner.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include "localsandexpressionswindow.h"
#include "watchwindow.h"
#include <debugger/debuggerstartparameters.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerinternalconstants.h>
#include <debugger/debuggermainwindow.h>
#include <debugger/debuggerrunner.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggertooltipmanager.h>
#include <debugger/localsandexpressionswindow.h>
#include <debugger/watchwindow.h>
#include "breakhandler.h"
#include "stackhandler.h"
#include "watchhandler.h"
#include "sourcefileshandler.h"
#include <debugger/breakhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/watchhandler.h>
#include <debugger/sourcefileshandler.h>
#include <qmljseditor/qmljseditorconstants.h>
#include <qmljs/parser/qmljsast_p.h>
#include <qmljs/qmljsmodelmanagerinterface.h>
+1 -1
View File
@@ -30,10 +30,10 @@
#ifndef QMLENGINE_H
#define QMLENGINE_H
#include "debuggerengine.h"
#include "interactiveinterpreter.h"
#include "qmladapter.h"
#include "qmlinspectoradapter.h"
#include <debugger/debuggerengine.h>
#include <projectexplorer/applicationlauncher.h>
#include <qmldebug/qdebugmessageclient.h>
@@ -29,13 +29,13 @@
#include "qmlinspectoradapter.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerstringutils.h"
#include "qmladapter.h"
#include "debuggerengine.h"
#include "qmlinspectoragent.h"
#include "qmllivetextpreview.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggerengine.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/icore.h>
@@ -30,7 +30,7 @@
#ifndef QMLINSPECTORADAPTER_H
#define QMLINSPECTORADAPTER_H
#include "debuggerconstants.h"
#include <debugger/debuggerconstants.h>
#include <coreplugin/icontext.h>
#include <qmldebug/qmldebugclient.h>
@@ -29,11 +29,11 @@
#include "qmlinspectoragent.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerengine.h"
#include "debuggerstringutils.h"
#include "watchhandler.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerengine.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/watchhandler.h>
#include <qmldebug/qmldebugconstants.h>
#include <utils/qtcassert.h>
@@ -29,14 +29,14 @@
#include "qmlv8debuggerclient.h"
#include "qmlv8debuggerclientconstants.h"
#include "debuggerstringutils.h"
#include "watchhandler.h"
#include "breakhandler.h"
#include "qmlengine.h"
#include "stackhandler.h"
#include "debuggercore.h"
#include "debuggeractions.h"
#include <debugger/debuggerstringutils.h>
#include <debugger/watchhandler.h>
#include <debugger/breakhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggeractions.h>
#include <utils/qtcassert.h>
#include <texteditor/basetexteditor.h>
@@ -28,12 +28,12 @@
****************************************************************************/
#include "qscriptdebuggerclient.h"
#include "watchhandler.h"
#include "breakhandler.h"
#include "qmlengine.h"
#include "stackhandler.h"
#include "debuggercore.h"
#include "debuggerstringutils.h"
#include <debugger/watchhandler.h>
#include <debugger/breakhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerstringutils.h>
#include <QFileInfo>
#include <QMessageBox>
@@ -34,7 +34,7 @@
#include <utils/pathchooser.h>
#include <utils/checkablemessagebox.h>
#include <symbolpathsdialog.h>
#include "symbolpathsdialog.h"
#include <QCheckBox>
#include <QDir>
-2
View File
@@ -10,8 +10,6 @@ HEADERS += $$PWD/backtrace.h \
$$PWD/peutils.h \
shared/symbolpathsdialog.h
INCLUDEPATH += $$PWD
win32-msvc* {
# For the Privilege manipulation functions in sharedlibraryinjector.cpp.
LIBS += -ladvapi32
-2
View File
@@ -1,5 +1,3 @@
INCLUDEPATH+=$$PWD
DEFINES+=CPP_ENABLED
HEADERS+=$$PWD/formclasswizardpage.h \
+1 -1
View File
@@ -28,7 +28,7 @@
****************************************************************************/
#include "cppsettingspage.h"
#include "designerconstants.h"
#include <designer/designerconstants.h>
#include <QCoreApplication>
#include <QTextStream>
+1 -1
View File
@@ -31,7 +31,7 @@
#define CPPSETTINGSPAGE_H
#include "ui_cppsettingspagewidget.h"
#include "qtdesignerformclasscodegenerator.h"
#include <designer/qtdesignerformclasscodegenerator.h>
#include <coreplugin/dialogs/ioptionspage.h>

Some files were not shown because too many files have changed in this diff Show More