1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 00:22:31 +02:00

* Try and fix compiling with mingw.

This commit is contained in:
Christian Muehlhaeuser 2012-08-11 17:52:47 +02:00
parent 0d2e035d43
commit deb7d04351
2 changed files with 9 additions and 8 deletions

View File

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

View File

@ -29,6 +29,7 @@
#include <QStackedWidget>
#include <QToolButton>
#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