1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

Change display name of whatshot widget to Charts and use the charts icon

This commit is contained in:
Casey Link 2011-08-26 20:12:14 -05:00
parent a2f2fc7867
commit 6cba5c990e
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -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; }

View File

@ -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() )
);