diff -r 3a6b55c6390c -r e14766a36cdc radiohswidget/src/radiohswidget.cpp --- a/radiohswidget/src/radiohswidget.cpp Wed Aug 18 09:49:03 2010 +0300 +++ b/radiohswidget/src/radiohswidget.cpp Thu Sep 02 20:26:56 2010 +0300 @@ -704,8 +704,8 @@ POWER_BUTTON_ICON_ON, CONTROL_BUTTON_ICON_COLOR_NORMAL); // Connect the button's clicked signal. - Radio::connect(mPowerButton, SIGNAL(clicked()), this, - SLOT(toggleRadioPower())); + Radio::connect(mPowerButton, SIGNAL(clicked()), + this, SLOT(toggleRadioPower())); } // Find previous button. @@ -718,8 +718,8 @@ PREVIOUS_BUTTON_SUFFIX, NULL, CONTROL_BUTTON_ICON_COLOR_DISABLED); // Connect the button's clicked signal. - Radio::connect(mPreviousButton, SIGNAL(clicked()), this, - SLOT(changeToPreviousStation())); + Radio::connect(mPreviousButton, SIGNAL(clicked()), + this, SLOT(changeToPreviousStation())); } // Find next button. @@ -732,8 +732,8 @@ CONTROL_BUTTON_GRAPHICS_DISABLED, NEXT_BUTTON_SUFFIX, NULL, CONTROL_BUTTON_ICON_COLOR_DISABLED); // Connect the button's clicked signal. - Radio::connect(mNextButton, SIGNAL(clicked()), this, - SLOT(changeToNextStation())); + Radio::connect(mNextButton, SIGNAL(clicked()), + this, SLOT(changeToNextStation())); } } }