diff options
Diffstat (limited to 'src/plugins/cpptools/cppmodelmanager.cpp')
-rw-r--r-- | src/plugins/cpptools/cppmodelmanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cppmodelmanager.cpp b/src/plugins/cpptools/cppmodelmanager.cpp index 00db18a579..0e0bb19419 100644 --- a/src/plugins/cpptools/cppmodelmanager.cpp +++ b/src/plugins/cpptools/cppmodelmanager.cpp @@ -37,7 +37,7 @@ #include "cpphighlightingsupport.h" #include "cppindexingsupport.h" #include "cppmodelmanagersupportinternal.h" -#include "cpppreprocessor.h" +#include "cppsourceprocessor.h" #include "cpptoolsconstants.h" #include "cpptoolseditorsupport.h" #include "cpptoolsplugin.h" @@ -310,7 +310,7 @@ QStringList CppModelManager::internalIncludePaths() const const ProjectInfo pinfo = it.value(); foreach (const ProjectPart::Ptr &part, pinfo.projectParts()) foreach (const QString &path, part->includePaths) - includePaths.append(CppPreprocessor::cleanPath(path)); + includePaths.append(CppSourceProcessor::cleanPath(path)); } includePaths.removeDuplicates(); return includePaths; @@ -325,7 +325,7 @@ QStringList CppModelManager::internalFrameworkPaths() const const ProjectInfo pinfo = it.value(); foreach (const ProjectPart::Ptr &part, pinfo.projectParts()) foreach (const QString &path, part->frameworkPaths) - frameworkPaths.append(CppPreprocessor::cleanPath(path)); + frameworkPaths.append(CppSourceProcessor::cleanPath(path)); } frameworkPaths.removeDuplicates(); return frameworkPaths; |