diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:18:11 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-14 21:18:11 -0600 |
commit | fc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335 (patch) | |
tree | f1e7de165d9a038aed66481b047cd32b4e1091df /tdecore/kprocess.cpp | |
parent | 00894908e7b9359d8432a615380bf3db1d4745a0 (diff) | |
download | tdelibs-fc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335.tar.gz tdelibs-fc3c9d3c5ff6ed64cdaeaf2e9c050aa3037fe335.zip |
Update various qt function definitions and static methods for tqt3
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))); } |