From 28996bd9c17aa80c47c918b8bf78b0ca351a8b01 Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Wed, 25 Aug 2010 00:56:45 +0300 Subject: [PATCH] =?UTF-8?q?Fixed=20#1978=20(Fix=20compiler=20warnings=20in?= =?UTF-8?q?=20GUI=20(MainWindow::mExiting=E2=80=99=20will=20be=20initializ?= =?UTF-8?q?ed=20after...))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gui/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 3baddf4a2..f5b26ee6e 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -44,8 +44,8 @@ MainWindow::MainWindow() : mLanguages(new QActionGroup(this)), mLogView(NULL), mHelpWindow(NULL), - mExiting(false), - mProject(NULL) + mProject(NULL), + mExiting(false) { mUI.setupUi(this); mUI.mResults->Initialize(mSettings, mApplications);