summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/compileroptionsbuilder.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-09-13 11:44:43 +0200
committerTobias Hunger <tobias.hunger@qt.io>2018-09-13 11:32:31 +0000
commit1df553a68308c7be274fe95890f063ef367a2674 (patch)
tree2b6e41b429bd3232d8b86d258d8a963c4fef07dd /src/plugins/cpptools/compileroptionsbuilder.cpp
parent292cc7c8161617626ccb230d46889f49a65770bf (diff)
downloadqt-creator-1df553a68308c7be274fe95890f063ef367a2674.tar.gz
ProjectExplorer: Rename IncludePathType to HeaderPathType
It is the type used by the HeaderPath class, so reflect that in the name. I also considered to rename HeaderPath to IncludePath, but that name is reflected in a lot of users, which would also need to be adjusted for consistency. That would blow up the patch size for little value IMHO. Change-Id: I51421dbd3ab8b2874dc32fc82dc394c9b93ce5e9 Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Diffstat (limited to 'src/plugins/cpptools/compileroptionsbuilder.cpp')
-rw-r--r--src/plugins/cpptools/compileroptionsbuilder.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/cpptools/compileroptionsbuilder.cpp b/src/plugins/cpptools/compileroptionsbuilder.cpp
index f1e51611a4..ae2e9a1467 100644
--- a/src/plugins/cpptools/compileroptionsbuilder.cpp
+++ b/src/plugins/cpptools/compileroptionsbuilder.cpp
@@ -198,7 +198,7 @@ void CompilerOptionsBuilder::enableExceptions()
void CompilerOptionsBuilder::addHeaderPathOptions()
{
- using ProjectExplorer::IncludePathType;
+ using ProjectExplorer::HeaderPathType;
QStringList result;
@@ -212,15 +212,15 @@ void CompilerOptionsBuilder::addHeaderPathOptions()
QString prefix;
Utils::FileName path;
switch (headerPath.type) {
- case IncludePathType::Framework:
+ case HeaderPathType::Framework:
prefix = QLatin1String("-F");
break;
- case IncludePathType::System:
+ case HeaderPathType::System:
prefix = "-isystem";
break;
default: // This shouldn't happen, but let's be nice..:
// intentional fall-through:
- case IncludePathType::User:
+ case HeaderPathType::User:
prefix = includeDirOptionForPath(headerPath.path);
break;
}