From: Peter Kümmel Date: Fri, 4 Dec 2009 10:39:48 +0000 (+0000) Subject: coding style X-Git-Tag: 2.0.0~4921 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=248712bc64df43f3aa915b827e17bf1371076c9e;p=features.git coding style git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32326 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/Systemcall.cpp b/src/support/Systemcall.cpp index abb96bc9e5..fdb3f8ef87 100644 --- a/src/support/Systemcall.cpp +++ b/src/support/Systemcall.cpp @@ -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)