Fixed #1978 (Fix compiler warnings in GUI (MainWindow::mExiting’ will be initialized after...))

This commit is contained in:
Kimmo Varis 2010-08-25 00:56:45 +03:00
parent 8731b3efdd
commit 28996bd9c1
1 changed files with 2 additions and 2 deletions

View File

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