From 994929b50d787ce52a432f5524353e74f66cafdf Mon Sep 17 00:00:00 2001 From: con <qtc-committer@nokia.com> Date: Mon, 25 May 2009 13:25:31 +0200 Subject: [PATCH] Fix compilation with gcc3.3 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> --- src/plugins/coreplugin/editormanager/editormanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 <class EditorFactoryLike> inline EditorFactoryLike *findByKind(ExtensionSystem::PluginManager *pm, const QString &kind) { - foreach(EditorFactoryLike *efl, pm->getObjects<EditorFactoryLike>()) + foreach(EditorFactoryLike *efl, pm->template getObjects<EditorFactoryLike>()) if (kind == efl->kind()) return efl; return 0; -- GitLab