diff --git a/data/images/whats-hot.png b/data/images/whats-hot.png deleted file mode 100644 index 3b7ef64d0..000000000 Binary files a/data/images/whats-hot.png and /dev/null differ diff --git a/src/libtomahawk/widgets/whatshotwidget.h b/src/libtomahawk/widgets/whatshotwidget.h index 2839c2eef..2cfb79312 100644 --- a/src/libtomahawk/widgets/whatshotwidget.h +++ b/src/libtomahawk/widgets/whatshotwidget.h @@ -54,7 +54,7 @@ public: virtual QWidget* widget() { return this; } virtual Tomahawk::PlaylistInterface* playlistInterface() const { return 0; } - virtual QString title() const { return tr( "What's Hot" ); } + virtual QString title() const { return tr( "Charts" ); } virtual QString description() const { return QString(); } virtual bool showStatsBar() const { return false; } diff --git a/src/sourcetree/items/collectionitem.cpp b/src/sourcetree/items/collectionitem.cpp index 3dcb9900d..fd05c799f 100644 --- a/src/sourcetree/items/collectionitem.cpp +++ b/src/sourcetree/items/collectionitem.cpp @@ -63,7 +63,7 @@ CollectionItem::CollectionItem( SourcesModel* mdl, SourceTreeItem* parent, cons ); recent->setSortValue( -300 ); - GenericPageItem* hot = new GenericPageItem( model(), this, tr( "What's Hot" ), QIcon( RESPATH "images/whats-hot.png" ), + GenericPageItem* hot = new GenericPageItem( model(), this, tr( "Charts" ), QIcon( RESPATH "images/charts.png" ), boost::bind( &ViewManager::showWhatsHotPage, ViewManager::instance() ), boost::bind( &ViewManager::whatsHotWidget, ViewManager::instance() ) );