diff options
Diffstat (limited to 'src/plugins/cpptools/cppcompletionsupport.cpp')
-rw-r--r-- | src/plugins/cpptools/cppcompletionsupport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/cppcompletionsupport.cpp b/src/plugins/cpptools/cppcompletionsupport.cpp index 9246708c11..e68073fcee 100644 --- a/src/plugins/cpptools/cppcompletionsupport.cpp +++ b/src/plugins/cpptools/cppcompletionsupport.cpp @@ -58,8 +58,8 @@ TextEditor::IAssistInterface *CppCompletionSupport::createAssistInterface(Projec QStringList includePaths; QStringList frameworkPaths; if (project) { - includePaths = modelManager->projectInfo(project).includePaths; - frameworkPaths = modelManager->projectInfo(project).frameworkPaths; + includePaths = modelManager->projectInfo(project).includePaths(); + frameworkPaths = modelManager->projectInfo(project).frameworkPaths(); } return new CppTools::Internal::CppCompletionAssistInterface( document, |