From: Peter Kümmel Date: Fri, 16 Jul 2010 08:14:00 +0000 (+0000) Subject: fix stupid renaming error X-Git-Tag: 2.0.0~2977 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=146b1083a1066502b6694ca3f5c926f695fd5a53;p=features.git fix stupid renaming error git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34914 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/Systemcall.cpp b/src/support/Systemcall.cpp index a328e367e1..ab1ef60299 100644 --- a/src/support/Systemcall.cpp +++ b/src/support/Systemcall.cpp @@ -295,11 +295,11 @@ bool SystemcallPrivate::waitWhile(State waitwhile, bool process_events, int time if (!process_) return false; - process_events = process_events; + process_events_ = process_events; // Block GUI while waiting, // relay on QProcess' wait functions - if (!process_events) { + if (!process_events_) { if (waitwhile == Starting) return process_->waitForStarted(timeout); if (waitwhile == Running)