mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-25 02:09:48 +01:00
standardize loading signal, i think this was a typo..
This commit is contained in:
parent
3378b1ef82
commit
4f5948db71
@ -60,7 +60,9 @@ signals:
|
||||
void repeatModeChanged( PlaylistInterface::RepeatMode mode );
|
||||
void shuffleModeChanged( bool enabled );
|
||||
|
||||
void itemSizeChanged( const QModelIndex& index );
|
||||
void loadingStarted();
|
||||
void loadingFinished();
|
||||
void trackCountChanged( unsigned int tracks );
|
||||
|
||||
private slots:
|
||||
void onDataChanged();
|
||||
|
@ -99,6 +99,7 @@ PlaylistModel::loadPlaylist( const Tomahawk::playlist_ptr& playlist, bool loadEn
|
||||
int c = rowCount( QModelIndex() );
|
||||
|
||||
qDebug() << "Starting loading" << playlist->title();
|
||||
emit loadingStarted();
|
||||
emit beginInsertRows( QModelIndex(), c, c + entries.count() - 1 );
|
||||
|
||||
m_waitingForResolved.clear();
|
||||
|
@ -71,8 +71,6 @@ signals:
|
||||
|
||||
void itemSizeChanged( const QModelIndex& index );
|
||||
|
||||
void playlistDeleted();
|
||||
|
||||
private slots:
|
||||
void onDataChanged();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user