QmlDesigner: Remove invalid "typename" keyword.

This commit is contained in:
ck
2010-04-26 17:27:47 +02:00
parent f3e0ac3729
commit 5022679311

View File

@@ -67,7 +67,7 @@ QVariant DesignerPropertyMap<DefaultType>::value(const QString &key) const
template <class DefaultType> template <class DefaultType>
void DesignerPropertyMap<DefaultType>::registerDeclarativeType(const QString &name) void DesignerPropertyMap<DefaultType>::registerDeclarativeType(const QString &name)
{ {
typedef typename DesignerPropertyMap<DefaultType> myType; typedef DesignerPropertyMap<DefaultType> myType;
qmlRegisterType<myType>("Bauhaus",1,0,name); qmlRegisterType<myType>("Bauhaus",1,0,name);
} }