Fix compilation with gcc3.3

Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
con
2009-05-25 13:25:31 +02:00
parent eb47988f3f
commit 994929b50d

View File

@@ -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;