diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-06-29 17:47:59 +0200 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-07-02 11:18:51 +0200 |
commit | e3e8b1a5c01ddc230772ee0553ca325704295312 (patch) | |
tree | 9b0ce1ec310800cb6a4816b7a31269e63093aa5f /src/plugins/cppeditor/cpphoverhandler.cpp | |
parent | bb8aed629f9e48f4a47a6acaae0cd5a80c7e2291 (diff) | |
download | qt-creator-e3e8b1a5c01ddc230772ee0553ca325704295312.tar.gz |
Removed the TokenCache.
Diffstat (limited to 'src/plugins/cppeditor/cpphoverhandler.cpp')
-rw-r--r-- | src/plugins/cppeditor/cpphoverhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cppeditor/cpphoverhandler.cpp b/src/plugins/cppeditor/cpphoverhandler.cpp index b237cbf8f8..8115032b1e 100644 --- a/src/plugins/cppeditor/cpphoverhandler.cpp +++ b/src/plugins/cppeditor/cpphoverhandler.cpp @@ -232,7 +232,7 @@ void CppHoverHandler::updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, in } // Fetch the expression's code - ExpressionUnderCursor expressionUnderCursor(m_modelManager->tokenCache(editor)); + ExpressionUnderCursor expressionUnderCursor; const QString expression = expressionUnderCursor(tc); const QList<LookupItem> types = typeOfExpression(expression, scope); |