]> git.lyx.org Git - lyx.git/commitdiff
fix init order
authorPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 11:48:38 +0000 (11:48 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 11:48:38 +0000 (11:48 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32330 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp

index d4a3b514fbe84de697e4a213970e97384ed79a6a..4d40c58536b630605af68f6a34e3c3f6a3e0feef 100644 (file)
@@ -138,8 +138,8 @@ int Systemcall::startscript(Starttype how, string const & what)
 
 
 SystemcallPrivate::SystemcallPrivate(const std::string& of) : 
-                               proc_(new QProcess), outindex_(0), process_events(false),
-                               errindex_(0), outfile(of), showout_(false), showerr_(false)
+                                proc_(new QProcess), outindex_(0), errindex_(0),
+                                outfile(of), showout_(false), showerr_(false), process_events(false)
 {
        if (!outfile.empty()) {
                // Check whether we have to simply throw away the output.
@@ -167,6 +167,7 @@ void SystemcallPrivate::startProcess(const QString& cmd)
        }
 }
 
+
 void SystemcallPrivate::processEvents()
 {
        if(process_events) {
@@ -175,6 +176,7 @@ void SystemcallPrivate::processEvents()
        }
 }
 
+
 void SystemcallPrivate::waitAndProcessEvents()
 {
        Sleep::millisec(100);
@@ -217,7 +219,6 @@ bool SystemcallPrivate::waitWhile(State waitwhile, bool proc_events, int timeout
 }
 
 
-
 SystemcallPrivate::~SystemcallPrivate()
 {
        flush();
@@ -254,6 +255,7 @@ void SystemcallPrivate::flush()
        }
 }
 
+
 void SystemcallPrivate::stdOut()
 {
        if (proc_ && showout_) {
@@ -364,6 +366,7 @@ QString SystemcallPrivate::exitStatusMessage() const
        return message;
 }
 
+
 int SystemcallPrivate::exitCode()
 {
        if (!proc_)
@@ -386,6 +389,7 @@ void SystemcallPrivate::killProcess()
        killProcess(proc_);
 }
 
+
 void SystemcallPrivate::killProcess(QProcess * p)
 {
        if (p) {