From 6598b9e2a4580b7503a058a0a60c0a15d5b20d35 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Fri, 4 Dec 2009 11:06:29 +0000 Subject: [PATCH] gcc complains because of inicialization order git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32327 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/Systemcall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/Systemcall.cpp b/src/support/Systemcall.cpp index fdb3f8ef87..f1d3e75408 100644 --- a/src/support/Systemcall.cpp +++ b/src/support/Systemcall.cpp @@ -139,7 +139,7 @@ int Systemcall::startscript(Starttype how, string const & what) SystemcallPrivate::SystemcallPrivate(const std::string& of) : proc_(new QProcess), outindex_(0), - errindex_(0), showout_(false), showerr_(false), outfile(of) + errindex_(0), outfile(of), showout_(false), showerr_(false) { if (!outfile.empty()) { // Check whether we have to simply throw away the output. -- 2.39.2