diff --git a/src/TomahawkWindow.cpp b/src/TomahawkWindow.cpp index 22dcdd22a..ef0547d61 100644 --- a/src/TomahawkWindow.cpp +++ b/src/TomahawkWindow.cpp @@ -92,9 +92,9 @@ TomahawkWindow::TomahawkWindow( QWidget* parent ) : QMainWindow( parent ) #ifdef Q_OS_WIN , m_buttonCreatedID( RegisterWindowMessage( L"TaskbarButtonCreated" ) ) -# ifdef HAVE_THUMBBUTTON - , m_taskbarList(0) -# endif + #ifdef HAVE_THUMBBUTTON + , m_taskbarList( 0 ) + #endif #endif , ui( new Ui::TomahawkWindow ) , m_searchWidget( 0 ) @@ -195,8 +195,7 @@ TomahawkWindow::loadSettings() bool mbVisible = s->menuBarVisible(); menuBar()->setVisible( mbVisible ); m_compactMenuAction->setVisible( !mbVisible ); - ActionCollection::instance()->getAction( "toggleMenuBar" ) - ->setText( mbVisible ? tr( "Hide Menu Bar" ) : tr( "Show Menu Bar" ) ); + ActionCollection::instance()->getAction( "toggleMenuBar" )->setText( mbVisible ? tr( "Hide Menu Bar" ) : tr( "Show Menu Bar" ) ); #endif } @@ -768,6 +767,7 @@ TomahawkWindow::audioStateChanged( AudioState newState, AudioState oldState ) #endif // HAVE_THUMBBUTTON } + void TomahawkWindow::updateWindowsLoveButton() { diff --git a/src/TomahawkWindow.h b/src/TomahawkWindow.h index 0b0f130c7..29fb59cbe 100644 --- a/src/TomahawkWindow.h +++ b/src/TomahawkWindow.h @@ -29,6 +29,7 @@ #include #include +#include "config.h" #include "Result.h" #include "audio/AudioEngine.h" #include "utils/XspfLoader.h" @@ -167,10 +168,10 @@ private: #ifdef Q_OS_WIN bool setupWindowsButtons(); const unsigned int m_buttonCreatedID; -# ifdef HAVE_THUMBBUTTON - ITaskbarList3 *m_taskbarList; + #ifdef HAVE_THUMBBUTTON + ITaskbarList3* m_taskbarList; THUMBBUTTON m_thumbButtons[5]; -# endif + #endif enum TB_STATES{ TP_PREVIOUS = 0,TP_PLAY_PAUSE = 1,TP_NEXT = 2,TP_LOVE = 4 }; #endif