From 3f75db64eb30c039d76937656a3909d63a341412 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Sun, 10 Jun 2012 09:08:21 +0200 Subject: [PATCH] Fix connection mismatch --- src/libtomahawk/accounts/lastfm/LastFmConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp b/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp index ab8420466..00b9472a6 100644 --- a/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp +++ b/src/libtomahawk/accounts/lastfm/LastFmConfig.cpp @@ -40,7 +40,7 @@ LastFmConfig::LastFmConfig( LastFmAccount* account ) m_ui = new Ui_LastFmConfig; m_ui->setupUi( this ); - connect( m_ui->testLogin, SIGNAL( clicked( bool ) ), this, SLOT( testLogin( bool ) ) ); + connect( m_ui->testLogin, SIGNAL( clicked( bool ) ), this, SLOT( testLogin() ) ); connect( m_ui->username, SIGNAL( textChanged( QString ) ), this, SLOT( enableButton() ) ); connect( m_ui->password, SIGNAL( textChanged( QString ) ), this, SLOT( enableButton() ) );