]> git.lyx.org Git - features.git/commitdiff
gcc complains because of inicialization order
authorPavel Sanda <sanda@lyx.org>
Fri, 4 Dec 2009 11:06:29 +0000 (11:06 +0000)
committerPavel Sanda <sanda@lyx.org>
Fri, 4 Dec 2009 11:06:29 +0000 (11:06 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32327 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp

index fdb3f8ef878f83d4ea24398a2cb79e7debbb1a90..f1d3e7540825a2085f58b3c367d06362b12f8406 100644 (file)
@@ -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.