1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 09:34:53 +02:00

* Added typedefs for Artist & Album weakpointers.

This commit is contained in:
Christian Muehlhaeuser
2013-03-30 13:03:07 +01:00
parent 32cbc09595
commit a26df54d9f

View File

@@ -57,7 +57,9 @@ namespace Tomahawk
typedef QSharedPointer<Result> result_ptr;
typedef QSharedPointer<Source> source_ptr;
typedef QSharedPointer<Artist> artist_ptr;
typedef QWeakPointer<Artist> artist_wptr;
typedef QSharedPointer<Album> album_ptr;
typedef QWeakPointer<Album> album_wptr;
typedef QSharedPointer<PeerInfo> peerinfo_ptr;
typedef QSharedPointer<DynamicControl> dyncontrol_ptr;