mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-23 01:09:42 +01:00
* Added setLoaded( bool ) to Playlist, for derived classes to make use of.
This commit is contained in:
parent
737b8e46ae
commit
3131390e51
@ -538,7 +538,7 @@ Playlist::setRevision( const QString& rev,
|
||||
}
|
||||
|
||||
setBusy( false );
|
||||
m_loaded = true;
|
||||
setLoaded( true );
|
||||
|
||||
if ( m_initEntries.count() && currentrevision().isEmpty() )
|
||||
{
|
||||
@ -769,6 +769,13 @@ Playlist::setBusy( bool b )
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
Playlist::setLoaded( bool b )
|
||||
{
|
||||
m_loaded = b;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
Playlist::checkRevisionQueue()
|
||||
{
|
||||
|
@ -304,6 +304,7 @@ private:
|
||||
void init();
|
||||
|
||||
void setBusy( bool b );
|
||||
void setLoaded( bool b );
|
||||
void checkRevisionQueue();
|
||||
|
||||
QWeakPointer< Playlist > m_weakSelf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user