From b05f56491eb4a5bff53373534bdf8519117c3ee1 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 18 May 2012 12:01:16 +0200 Subject: [PATCH] * Register album_ptr & artist_ptr as meta-types. --- src/TomahawkApp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TomahawkApp.cpp b/src/TomahawkApp.cpp index 6243e11b5..53b09bda9 100644 --- a/src/TomahawkApp.cpp +++ b/src/TomahawkApp.cpp @@ -420,6 +420,8 @@ TomahawkApp::registerMetaTypes() qRegisterMetaType< Tomahawk::collection_ptr >("Tomahawk::collection_ptr"); qRegisterMetaType< Tomahawk::result_ptr >("Tomahawk::result_ptr"); qRegisterMetaType< Tomahawk::query_ptr >("Tomahawk::query_ptr"); + qRegisterMetaType< Tomahawk::album_ptr >("Tomahawk::album_ptr"); + qRegisterMetaType< Tomahawk::artist_ptr >("Tomahawk::artist_ptr"); qRegisterMetaType< Tomahawk::source_ptr >("Tomahawk::source_ptr"); qRegisterMetaType< Tomahawk::dyncontrol_ptr >("Tomahawk::dyncontrol_ptr"); qRegisterMetaType< Tomahawk::playlist_ptr >("Tomahawk::playlist_ptr");