]> git.lyx.org Git - features.git/commitdiff
coding style
authorPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 10:39:48 +0000 (10:39 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 10:39:48 +0000 (10:39 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32326 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp

index abb96bc9e54833ab8ca8ab8f68e8c7678831e635..fdb3f8ef878f83d4ea24398a2cb79e7debbb1a90 100644 (file)
@@ -105,10 +105,10 @@ int Systemcall::startscript(Starttype how, string const & what)
        QString cmd = toqstr(parsecmd(what, outfile));
        SystemcallPrivate d(outfile);
 
-       bool processEvents = false;
+       bool process_events = false;
 
        d.startProcess(cmd);
-       if (!d.waitWhile(SystemcallPrivate::Starting, processEvents, 3000)) {
+       if (!d.waitWhile(SystemcallPrivate::Starting, process_events, 3000)) {
                LYXERR0("QProcess " << cmd << " did not start!");
                LYXERR0("error " << d.errorMessage());
                return 10;
@@ -120,7 +120,7 @@ int Systemcall::startscript(Starttype how, string const & what)
                return 0;
        }
 
-       if (!d.waitWhile(SystemcallPrivate::Running, processEvents, 180000)) {
+       if (!d.waitWhile(SystemcallPrivate::Running, process_events, 180000)) {
                LYXERR0("QProcess " << cmd << " did not finished!");
                LYXERR0("error " << d.errorMessage());
                LYXERR0("status " << d.exitStatusMessage());
@@ -175,14 +175,14 @@ void SystemcallPrivate::waitAndProcessEvents()
 }
 
 
-bool SystemcallPrivate::waitWhile(State waitwhile, bool processEvents, int timeout)
+bool SystemcallPrivate::waitWhile(State waitwhile, bool process_events, int timeout)
 {
        if (!proc_)
                return false;
 
        // Block GUI while waiting,
        // relay on QProcess' wait functions
-       if (!processEvents) {
+       if (!process_events) {
                if (waitwhile == Starting)
                        return proc_->waitForStarted(timeout);
                if (waitwhile == Running)