1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01: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 )
: q_ptr( q )
, queuedSetPlaylistRevision( false )
, loaded( false )
, busy( false )
{
}
@ -46,6 +48,8 @@ public:
, source( _author )
, lastmodified( 0 )
, queuedSetPlaylistRevision( false )
, loaded( false )
, busy( false )
{
}
@ -69,6 +73,8 @@ public:
, createdOn( _createdOn )
, queuedSetPlaylistRevision( false )
, shared( _shared )
, loaded( false )
, busy( false )
{
}
@ -89,7 +95,9 @@ public:
, createdOn( 0 ) // will be set by db command
, queuedSetPlaylistRevision( false )
, shared( _shared )
, loaded( false )
, initEntries( _entries )
, busy( false )
{
}