aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/cppeditoroutline.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2015-02-15 23:13:28 +0200
committerOrgad Shaneh <orgads@gmail.com>2015-02-17 10:11:29 +0000
commit831fb6181e592002f5c97c324991799e6e2337ef (patch)
tree4b516169a0ca968ec508df136a94bf31da78c29e /src/plugins/cpptools/cppeditoroutline.cpp
parenta22dc36aaf612735d09a51d4fb5865fc64297d02 (diff)
CppTools: Remove assertions for CppModelManager::instance()
It cannot return null. Change-Id: I3ac5f33e7e02554edc8df067c7b85518e58c1fc2 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/cppeditoroutline.cpp')
-rw-r--r--src/plugins/cpptools/cppeditoroutline.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cppeditoroutline.cpp b/src/plugins/cpptools/cppeditoroutline.cpp
index ba7575cb3f..8102cd8d40 100644
--- a/src/plugins/cpptools/cppeditoroutline.cpp
+++ b/src/plugins/cpptools/cppeditoroutline.cpp
@@ -187,9 +187,6 @@ QWidget *CppEditorOutline::widget() const
void CppEditorOutline::updateNow()
{
CppTools::CppModelManager *cmmi = CppTools::CppModelManager::instance();
- if (!cmmi)
- return;
-
const CPlusPlus::Snapshot snapshot = cmmi->snapshot();
const QString filePath = m_editorWidget->textDocument()->filePath().toString();
CPlusPlus::Document::Ptr document = snapshot.document(filePath);