summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/compileroptionsbuilder.cpp
diff options
context:
space:
mode:
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;
}