1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-01 11:50:37 +02:00

* Better safe than sorry.

This commit is contained in:
Christian Muehlhaeuser
2014-09-26 11:25:41 +02:00
parent 9e2ecf7f1e
commit 735c2107a3

View File

@@ -38,6 +38,8 @@ public:
PlaylistPrivate( Playlist* q ) PlaylistPrivate( Playlist* q )
: q_ptr( q ) : q_ptr( q )
, queuedSetPlaylistRevision( false ) , queuedSetPlaylistRevision( false )
, loaded( false )
, busy( false )
{ {
} }
@@ -46,6 +48,8 @@ public:
, source( _author ) , source( _author )
, lastmodified( 0 ) , lastmodified( 0 )
, queuedSetPlaylistRevision( false ) , queuedSetPlaylistRevision( false )
, loaded( false )
, busy( false )
{ {
} }
@@ -69,6 +73,8 @@ public:
, createdOn( _createdOn ) , createdOn( _createdOn )
, queuedSetPlaylistRevision( false ) , queuedSetPlaylistRevision( false )
, shared( _shared ) , shared( _shared )
, loaded( false )
, busy( false )
{ {
} }
@@ -89,7 +95,9 @@ public:
, createdOn( 0 ) // will be set by db command , createdOn( 0 ) // will be set by db command
, queuedSetPlaylistRevision( false ) , queuedSetPlaylistRevision( false )
, shared( _shared ) , shared( _shared )
, loaded( false )
, initEntries( _entries ) , initEntries( _entries )
, busy( false )
{ {
} }