From 6603d9ae5fca16b0797709e9ba47bd47fd67ec3f Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 1 Oct 2013 13:51:19 +0300 Subject: [PATCH] CppEditor: Fix compilation Change-Id: I5171bc3df7672d403f83d0ff352e8016a9694c40 Reviewed-by: Nikolai Kosjar --- src/plugins/cppeditor/cppeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/cppeditor/cppeditor.cpp b/src/plugins/cppeditor/cppeditor.cpp index 15d2a2c40ad..bf323e1b9fb 100644 --- a/src/plugins/cppeditor/cppeditor.cpp +++ b/src/plugins/cppeditor/cppeditor.cpp @@ -1245,7 +1245,7 @@ CPPEditorWidget::Link CPPEditorWidget::findLinkAt(const QTextCursor &cursor, boo return Link(); FollowSymbolUnderCursor followSymbolUnderCursor(this, cursor, resolveTarget, - m_modelManager->snapshot(), m_lastSemanticInfo.doc, symbolFinder); + m_modelManager->snapshot(), m_lastSemanticInfo.doc, symbolFinder()); return followSymbolUnderCursor.findLink(); }