]> git.lyx.org Git - features.git/commitdiff
remove debug code
authorPeter Kümmel <syntheticpp@gmx.net>
Sun, 27 Dec 2009 13:43:42 +0000 (13:43 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Sun, 27 Dec 2009 13:43:42 +0000 (13:43 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32657 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp

index ac704b47811ee7e348c103823b710e3427e253c5..809b88b3f46d8dffa423fef9dffcdb8549441deb 100644 (file)
@@ -32,7 +32,7 @@
 #include <QDebug>
 
 #define USE_QPROCESS
-//#define DEBUG_SYSTEMCALL // this macro shows the Qt 4.5 & 4.6 bug on Linux: multiple started() signals
+
 
 struct Sleep : QThread
 {
@@ -407,12 +407,7 @@ void SystemcallPrivate::stdErr()
 
 void SystemcallPrivate::processStarted()
 {
-#ifdef DEBUG_SYSTEMCALL
-       cmd_ = cmd_ + " -- process: " + QString::number((quint64) proc_);
-       if (true) {
-#else
        if (state != Running) {
-#endif
                state = Running;
                ProgressInterface::instance()->processStarted(cmd_);
        }
@@ -421,12 +416,7 @@ void SystemcallPrivate::processStarted()
 
 void SystemcallPrivate::processFinished(int, QProcess::ExitStatus)
 {
-#ifdef DEBUG_SYSTEMCALL
-       cmd_ = cmd_ + " -- process: " + QString::number((quint64) proc_);
-       if (true) {
-#else
        if (state != Finished) {
-#endif
                state = Finished;
                ProgressInterface::instance()->processFinished(cmd_);
        }