From 357901996ce4f57f4e772048fcaf937d260c2ada Mon Sep 17 00:00:00 2001 From: "craig.p.drummond" Date: Tue, 15 Apr 2014 19:21:57 +0000 Subject: [PATCH] Fix member initialisation order --- models/playqueuemodel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/models/playqueuemodel.cpp b/models/playqueuemodel.cpp index c6f6f62bb..f81730fe2 100644 --- a/models/playqueuemodel.cpp +++ b/models/playqueuemodel.cpp @@ -162,9 +162,6 @@ PlayQueueModel::PlayQueueModel(QObject *parent) , currentSongRowNum(-1) , time(0) , mpdState(MPDState_Inactive) - #ifndef ENABLE_UBUNTU - , dropAdjust(0) - #endif , stopAfterCurrent(false) , stopAfterTrackId(-1) #ifdef ENABLE_UBUNTU @@ -174,6 +171,9 @@ PlayQueueModel::PlayQueueModel(QObject *parent) #endif , undoEnabled(undoLimit>0) , lastCommand(Cmd_Other) + #ifndef ENABLE_UBUNTU + , dropAdjust(0) + #endif { fetcher=new StreamFetcher(this); connect(this, SIGNAL(modelReset()), this, SLOT(stats()));