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()));