1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-31 06:02:27 +02:00

Show settings dialog.

This commit is contained in:
Teo Mrnjavac 2012-08-14 11:50:38 +02:00
parent 47a38a9718
commit cf742f61ca

View File

@ -48,7 +48,9 @@ AccountsToolButton::AccountsToolButton( QWidget* parent )
QToolButton *settingsButton = new QToolButton( w );
settingsButton->setIcon( QIcon( RESPATH "images/account-settings.png" ) );
settingsButton->setToolButtonStyle( Qt::ToolButtonTextBesideIcon );
settingsButton->setText( tr( "Account Settings" ) );
settingsButton->setText( tr( "Configure Accounts" ) );
connect( settingsButton, SIGNAL( clicked() ),
window(), SLOT( showSettingsDialog() ) );
QHBoxLayout *headerLayout = new QHBoxLayout( w );
headerLayout->addWidget( connectionsLabel );