diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2013-08-29 16:36:42 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2013-09-02 17:28:17 +0200 |
commit | 72d173829caffb82b76e5ce03dbf6e6abda32cb0 (patch) | |
tree | 31f880f4ac1fb33e5347851d44e7f999225295eb /src/plugins/debugger/shared | |
parent | 7c4d0d3bf32e3861254394864aa686ee89d91aea (diff) | |
download | qt-creator-72d173829caffb82b76e5ce03dbf6e6abda32cb0.tar.gz |
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>
Diffstat (limited to 'src/plugins/debugger/shared')
-rw-r--r-- | src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp | 2 | ||||
-rw-r--r-- | src/plugins/debugger/shared/shared.pri | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp index 617a7c2994..93e06d10b8 100644 --- a/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp +++ b/src/plugins/debugger/shared/cdbsymbolpathlisteditor.cpp @@ -34,7 +34,7 @@ #include <utils/pathchooser.h> #include <utils/checkablemessagebox.h> -#include <symbolpathsdialog.h> +#include "symbolpathsdialog.h" #include <QCheckBox> #include <QDir> diff --git a/src/plugins/debugger/shared/shared.pri b/src/plugins/debugger/shared/shared.pri index a0021f598b..d465345522 100644 --- a/src/plugins/debugger/shared/shared.pri +++ b/src/plugins/debugger/shared/shared.pri @@ -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 |