summaryrefslogtreecommitdiffstats
path: root/src/library/banshee
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/banshee')
-rw-r--r--src/library/banshee/bansheefeature.cpp10
-rw-r--r--src/library/banshee/bansheeplaylistmodel.cpp2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/library/banshee/bansheefeature.cpp b/src/library/banshee/bansheefeature.cpp
index 1f2ae83e43..0f4b3ffa1a 100644
--- a/src/library/banshee/bansheefeature.cpp
+++ b/src/library/banshee/bansheefeature.cpp
@@ -107,12 +107,12 @@ void BansheeFeature::activate() {
//calls a slot in the sidebarmodel such that 'isLoading' is removed from the feature title.
m_title = tr("Banshee");
- emit(featureLoadingFinished(this));
+ emit featureLoadingFinished(this);
}
m_pBansheePlaylistModel->setTableModel(0); // Gets the master playlist
- emit(showTrackModel(m_pBansheePlaylistModel));
- emit(enableCoverArtDisplay(false));
+ emit showTrackModel(m_pBansheePlaylistModel);
+ emit enableCoverArtDisplay(false);
}
void BansheeFeature::activateChild(const QModelIndex& index) {
@@ -121,8 +121,8 @@ void BansheeFeature::activateChild(const QModelIndex& index) {
if (playlistID > 0) {
qDebug() << "Activating " << item->getLabel();
m_pBansheePlaylistModel->setTableModel(playlistID);
- emit(showTrackModel(m_pBansheePlaylistModel));
- emit(enableCoverArtDisplay(false));
+ emit showTrackModel(m_pBansheePlaylistModel);
+ emit enableCoverArtDisplay(false);
}
}
diff --git a/src/library/banshee/bansheeplaylistmodel.cpp b/src/library/banshee/bansheeplaylistmodel.cpp
index 666d426dcd..68c52afa6d 100644
--- a/src/library/banshee/bansheeplaylistmodel.cpp
+++ b/src/library/banshee/bansheeplaylistmodel.cpp
@@ -283,7 +283,7 @@ void BansheePlaylistModel::trackLoaded(QString group, TrackPointer pTrack) {
foreach (int row, rows) {
QModelIndex left = index(row, 0);
QModelIndex right = index(row, numColumns);
- emit(dataChanged(left, right));
+ emit dataChanged(left, right);
}
}
if (pTrack) {