summaryrefslogtreecommitdiffstats
path: root/src/kernel/qprocess_unix.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
commit69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch)
tree7b133311a4d5e5394f2612dced305f815c04847b /src/kernel/qprocess_unix.cpp
parente07baa10b7b8e7105e02a621efadac67216c61ed (diff)
downloadtqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz
tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kernel/qprocess_unix.cpp')
-rw-r--r--src/kernel/qprocess_unix.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/qprocess_unix.cpp b/src/kernel/qprocess_unix.cpp
index 3bba1bca1..f41923fd2 100644
--- a/src/kernel/qprocess_unix.cpp
+++ b/src/kernel/qprocess_unix.cpp
@@ -47,7 +47,7 @@
#include "ntqprocess.h"
-#ifndef QT_NO_PROCESS
+#ifndef TQT_NO_PROCESS
#include "ntqapplication.h"
#include "ntqptrqueue.h"
@@ -816,7 +816,7 @@ bool TQProcess::start( TQStringList *env )
if ( comms & DupStderr ) {
::dup2( STDOUT_FILENO, STDERR_FILENO );
}
-#ifndef QT_NO_DIR
+#ifndef TQT_NO_DIR
if (::chdir( workingDir.absPath().latin1() ) < 0) {
tqWarning( "Could not chdir" );
}
@@ -871,7 +871,7 @@ bool TQProcess::start( TQStringList *env )
if(!TQFile::exists(dir + "/" + command) && TQFile::exists(dir + "/" + command + ".app"))
dir += "/" + command + ".app/Contents/MacOS";
#endif
-#ifndef QT_NO_DIR
+#ifndef TQT_NO_DIR
TQFileInfo fileInfo( dir, command );
#else
TQFileInfo fileInfo( dir + "/" + command );
@@ -1414,4 +1414,4 @@ TQProcess::PID TQProcess::processIdentifier()
return d->proc->pid;
}
-#endif // QT_NO_PROCESS
+#endif // TQT_NO_PROCESS