From: Pavel Sanda Date: Fri, 4 Dec 2009 11:06:29 +0000 (+0000) Subject: gcc complains because of inicialization order X-Git-Tag: 2.0.0~4920 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6598b9e2a4580b7503a058a0a60c0a15d5b20d35;p=features.git gcc complains because of inicialization order git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32327 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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.