diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:49:30 -0600 |
commit | a9bde819f2b421dcc44741156e75eca4bb5fb4f4 (patch) | |
tree | d087071b1e8fcf79698938efec19f8e48bab0799 /kalarm/lib/shellprocess.cpp | |
parent | 5c4a80ead2b1fe57dc6a8c29d0368792344cd61e (diff) | |
download | tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.tar.gz tdepim-a9bde819f2b421dcc44741156e75eca4bb5fb4f4.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kalarm/lib/shellprocess.cpp')
-rw-r--r-- | kalarm/lib/shellprocess.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kalarm/lib/shellprocess.cpp b/kalarm/lib/shellprocess.cpp index b3df822e8..94666d532 100644 --- a/kalarm/lib/shellprocess.cpp +++ b/kalarm/lib/shellprocess.cpp @@ -56,9 +56,9 @@ bool ShellProcess::start(Communication comm) return false; } KShellProcess::operator<<(mCommand); - connect(this, TQT_SIGNAL(wroteStdin(KProcess*)), TQT_SLOT(writtenStdin(KProcess*))); - connect(this, TQT_SIGNAL(processExited(KProcess*)), TQT_SLOT(slotExited(KProcess*))); - if (!KShellProcess::start(KProcess::NotifyOnExit, comm)) + connect(this, TQT_SIGNAL(wroteStdin(TDEProcess*)), TQT_SLOT(writtenStdin(TDEProcess*))); + connect(this, TQT_SIGNAL(processExited(TDEProcess*)), TQT_SLOT(slotExited(TDEProcess*))); + if (!KShellProcess::start(TDEProcess::NotifyOnExit, comm)) { mStatus = START_FAIL; return false; @@ -72,7 +72,7 @@ bool ShellProcess::start(Communication comm) * Interprets the exit status according to which shell was called, and emits * a shellExited() signal. */ -void ShellProcess::slotExited(KProcess* proc) +void ShellProcess::slotExited(TDEProcess* proc) { kdDebug(5950) << "ShellProcess::slotExited()\n"; mStdinQueue.clear(); @@ -105,7 +105,7 @@ void ShellProcess::writeStdin(const char* buffer, int bufflen) bool write = mStdinQueue.isEmpty(); mStdinQueue.append(scopy); if (write) - KProcess::writeStdin(mStdinQueue.first(), mStdinQueue.first().length()); + TDEProcess::writeStdin(mStdinQueue.first(), mStdinQueue.first().length()); } /****************************************************************************** @@ -114,7 +114,7 @@ void ShellProcess::writeStdin(const char* buffer, int bufflen) * Note that buffers written to STDIN must not be freed until the writtenStdin() * signal has been processed. */ -void ShellProcess::writtenStdin(KProcess* proc) +void ShellProcess::writtenStdin(TDEProcess* proc) { mStdinQueue.pop_front(); // free the buffer which has now been written if (!mStdinQueue.isEmpty()) |