diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index 0007f7296d1..200d0ff626e 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -958,7 +958,7 @@ template inline EditorFactoryLike *findByKind(ExtensionSystem::PluginManager *pm, const QString &kind) { - foreach(EditorFactoryLike *efl, pm->getObjects()) + foreach(EditorFactoryLike *efl, pm->template getObjects()) if (kind == efl->kind()) return efl; return 0;