diff options
author | Erik Verbruggen <erik.verbruggen@digia.com> | 2012-10-16 16:02:40 +0200 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@digia.com> | 2012-10-23 09:26:19 +0200 |
commit | 9246e78d239dbe23572f2a29961c60ea1f27fe6c (patch) | |
tree | b0c6a3ad0913b5e8369e68374f3c694e06da0a23 /src/plugins/cpptools/cpptoolseditorsupport.cpp | |
parent | 80b737252b8b01525805f48bf95678ea4835b294 (diff) | |
download | qt-creator-9246e78d239dbe23572f2a29961c60ea1f27fe6c.tar.gz |
C++: started to make indexing plug-able.
Change-Id: Iff35840d73882a212dd77b54e4223c0b4111ac1c
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'src/plugins/cpptools/cpptoolseditorsupport.cpp')
-rw-r--r-- | src/plugins/cpptools/cpptoolseditorsupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cpptoolseditorsupport.cpp b/src/plugins/cpptools/cpptoolseditorsupport.cpp index a594dd445e..6fbb4c315e 100644 --- a/src/plugins/cpptools/cpptoolseditorsupport.cpp +++ b/src/plugins/cpptools/cpptoolseditorsupport.cpp @@ -124,7 +124,7 @@ void CppEditorSupport::updateDocumentNow() QStringList sourceFiles(_textEditor->document()->fileName()); _cachedContents = _textEditor->contents().toUtf8(); - _documentParser = _modelManager->refreshSourceFiles(sourceFiles); + _documentParser = _modelManager->updateSourceFiles(sourceFiles); } } |