From 2c2d6645b017d6645145cfcec5cb04f3b2c3878c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Mon, 16 Jun 2014 21:39:58 +0200 Subject: [PATCH] fix init order --- containmentactions/switchwindow/switch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/containmentactions/switchwindow/switch.cpp b/containmentactions/switchwindow/switch.cpp index c2243d720..a24967cf4 100644 --- a/containmentactions/switchwindow/switch.cpp +++ b/containmentactions/switchwindow/switch.cpp @@ -34,10 +34,10 @@ SwitchWindow::SwitchWindow(QObject *parent, const QVariantList &args) : Plasma::ContainmentActions(parent, args), - m_mode(AllFlat), - m_clearOrderTimer(0), m_groupManager(new TaskManager::GroupManager(this)), - m_tasksModel(new TaskManager::TasksModel(m_groupManager, this)) + m_tasksModel(new TaskManager::TasksModel(m_groupManager, this)), + m_mode(AllFlat), + m_clearOrderTimer(0) { m_groupManager->setGroupingStrategy(static_cast(0)); m_groupManager->reconnect();