diff options
author | Automated System <kb9vqf@pearsoncomputing.net> | 2012-02-14 22:40:43 -0600 |
---|---|---|
committer | Automated System <kb9vqf@pearsoncomputing.net> | 2012-02-14 22:40:43 -0600 |
commit | 1053cdc43c88b429df96a57c9b0f14be51a71540 (patch) | |
tree | 62f68bb172a62aeafaf56f2ee86d46f19fff9a3f /tdecore/kprocess.cpp | |
parent | de1db784f3df1568565b2d1b1a57585b54d2d462 (diff) | |
parent | fc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335 (diff) | |
download | tdelibs-1053cdc43c88b429df96a57c9b0f14be51a71540.tar.gz tdelibs-1053cdc43c88b429df96a57c9b0f14be51a71540.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'tdecore/kprocess.cpp')
-rw-r--r-- | tdecore/kprocess.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdecore/kprocess.cpp b/tdecore/kprocess.cpp index f13813d15..3658116ab 100644 --- a/tdecore/kprocess.cpp +++ b/tdecore/kprocess.cpp @@ -957,7 +957,7 @@ int KProcess::commSetupDoneP() if (communication & Stdin) { fcntl(in[1], F_SETFL, O_NONBLOCK | fcntl(in[1], F_GETFL)); innot = new TQSocketNotifier(in[1], TQSocketNotifier::Write, this); - Q_CHECK_PTR(innot); + TQ_CHECK_PTR(innot); innot->setEnabled(false); // will be enabled when data has to be sent TQObject::connect(innot, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotSendData(int))); @@ -965,7 +965,7 @@ int KProcess::commSetupDoneP() if (communication & Stdout) { outnot = new TQSocketNotifier(out[0], TQSocketNotifier::Read, this); - Q_CHECK_PTR(outnot); + TQ_CHECK_PTR(outnot); TQObject::connect(outnot, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotChildOutput(int))); if (communication & NoRead) @@ -974,7 +974,7 @@ int KProcess::commSetupDoneP() if (communication & Stderr) { errnot = new TQSocketNotifier(err[0], TQSocketNotifier::Read, this ); - Q_CHECK_PTR(errnot); + TQ_CHECK_PTR(errnot); TQObject::connect(errnot, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotChildError(int))); } |