From 7e35961874c1ede3046095844d83f566feca6807 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 15 Nov 2011 16:03:52 -0500 Subject: [PATCH] Fix metatype registration of InfoStringHash --- src/tomahawkapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tomahawkapp.cpp b/src/tomahawkapp.cpp index cabd0cc91..91d2023db 100644 --- a/src/tomahawkapp.cpp +++ b/src/tomahawkapp.cpp @@ -400,7 +400,7 @@ TomahawkApp::registerMetaTypes() qRegisterMetaType< AudioErrorCode >("AudioErrorCode"); - qRegisterMetaType< QHash< QString, QString > >( "Tomahawk::InfoSystem::InfoStringHash" ); + qRegisterMetaType< Tomahawk::InfoSystem::InfoStringHash >( "Tomahawk::InfoSystem::InfoStringHash" ); qRegisterMetaType< Tomahawk::InfoSystem::InfoType >( "Tomahawk::InfoSystem::InfoType" ); qRegisterMetaType< Tomahawk::InfoSystem::InfoRequestData >( "Tomahawk::InfoSystem::InfoRequestData" ); qRegisterMetaType< Tomahawk::InfoSystem::InfoSystemCache* >( "Tomahawk::InfoSystem::InfoSystemCache*" );