Enable thumbbar for debug build

This commit is contained in:
Jonas Kvinge 2020-10-17 03:41:28 +02:00
parent 6861b0d668
commit 7426399aa2
2 changed files with 7 additions and 7 deletions

View File

@ -890,9 +890,9 @@ optional_source(WIN32
SOURCES SOURCES
engine/directsounddevicefinder.cpp engine/directsounddevicefinder.cpp
engine/mmdevicefinder.cpp engine/mmdevicefinder.cpp
#core/windows7thumbbar.cpp core/windows7thumbbar.cpp
#HEADERS HEADERS
#core/windows7thumbbar.h core/windows7thumbbar.h
) )
optional_source(HAVE_SUBSONIC optional_source(HAVE_SUBSONIC

View File

@ -193,7 +193,7 @@
#include "smartplaylists/smartplaylistsviewcontainer.h" #include "smartplaylists/smartplaylistsviewcontainer.h"
#include "smartplaylists/smartplaylistsview.h" #include "smartplaylists/smartplaylistsview.h"
#if 0 #if defined(Q_OS_WIN) && defined(DEBUG)
# include "windows7thumbbar.h" # include "windows7thumbbar.h"
#endif #endif
@ -216,7 +216,7 @@ const int kTrackPositionUpdateTimeMs = 1000;
MainWindow::MainWindow(Application *app, SystemTrayIcon *tray_icon, OSDBase *osd, const CommandlineOptions &options, QWidget *parent) : MainWindow::MainWindow(Application *app, SystemTrayIcon *tray_icon, OSDBase *osd, const CommandlineOptions &options, QWidget *parent) :
QMainWindow(parent), QMainWindow(parent),
ui_(new Ui_MainWindow), ui_(new Ui_MainWindow),
#if 0 #if defined(Q_OS_WIN) && defined(DEBUG)
thumbbar_(new Windows7ThumbBar(this)), thumbbar_(new Windows7ThumbBar(this)),
#endif #endif
app_(app), app_(app),
@ -751,7 +751,7 @@ MainWindow::MainWindow(Application *app, SystemTrayIcon *tray_icon, OSDBase *osd
} }
// Windows 7 thumbbar buttons // Windows 7 thumbbar buttons
#if 0 #if defined(Q_OS_WIN) && defined(DEBUG)
thumbbar_->SetActions(QList<QAction*>() << ui_->action_previous_track << ui_->action_play_pause << ui_->action_stop << ui_->action_next_track << nullptr << ui_->action_love); thumbbar_->SetActions(QList<QAction*>() << ui_->action_previous_track << ui_->action_play_pause << ui_->action_stop << ui_->action_next_track << nullptr << ui_->action_love);
#endif #endif
@ -2752,7 +2752,7 @@ bool MainWindow::nativeEvent(const QByteArray &eventType, void *message, long *r
Q_UNUSED(eventType); Q_UNUSED(eventType);
Q_UNUSED(result); Q_UNUSED(result);
#if 0 #if defined(Q_OS_WIN) && defined(DEBUG)
MSG *msg = static_cast<MSG*>(message); MSG *msg = static_cast<MSG*>(message);
thumbbar_->HandleWinEvent(msg); thumbbar_->HandleWinEvent(msg);
#else #else