summaryrefslogtreecommitdiffstats
path: root/plugins/streaming/streaming-job.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:38:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:38:29 +0900
commit269551cf8e80ed83b626bb793f0f9f15b5f2809c (patch)
tree8acb279ab4af2e99e4db20e28ddd8fc1148a63f1 /plugins/streaming/streaming-job.cpp
parent887adb8a4498cf2537919d863a2554e4be379249 (diff)
downloadtderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.tar.gz
tderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'plugins/streaming/streaming-job.cpp')
-rw-r--r--plugins/streaming/streaming-job.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/streaming/streaming-job.cpp b/plugins/streaming/streaming-job.cpp
index 3318567..c3fb607 100644
--- a/plugins/streaming/streaming-job.cpp
+++ b/plugins/streaming/streaming-job.cpp
@@ -109,10 +109,10 @@ bool StreamingJob::startPutJob()
if (!m_TDEIO_Job)
return false;
m_TDEIO_Job->setAsyncDataEnabled(true);
- connect (m_TDEIO_Job, TQT_SIGNAL(dataReq(TDEIO::Job *job, TQByteArray &data)),
- this, TQT_SLOT(slotWriteData (TDEIO::Job *job, TQByteArray &data)));
- connect (m_TDEIO_Job, TQT_SIGNAL(result(TDEIO::Job *)),
- this, TQT_SLOT(slotIOJobResult(TDEIO::Job *)));
+ connect (m_TDEIO_Job, TQ_SIGNAL(dataReq(TDEIO::Job *job, TQByteArray &data)),
+ this, TQ_SLOT(slotWriteData (TDEIO::Job *job, TQByteArray &data)));
+ connect (m_TDEIO_Job, TQ_SIGNAL(result(TDEIO::Job *)),
+ this, TQ_SLOT(slotIOJobResult(TDEIO::Job *)));
return true;
}
@@ -154,10 +154,10 @@ bool StreamingJob::startGetJob()
if (!m_TDEIO_Job)
return false;
m_TDEIO_Job->setAsyncDataEnabled(true);
- connect (m_TDEIO_Job, TQT_SIGNAL(data(TDEIO::Job *, const TQByteArray &)),
- this, TQT_SLOT(slotReadData(TDEIO::Job *, const TQByteArray &)));
- connect (m_TDEIO_Job, TQT_SIGNAL(result(TDEIO::Job *)),
- this, TQT_SLOT(slotIOJobResult(TDEIO::Job *)));
+ connect (m_TDEIO_Job, TQ_SIGNAL(data(TDEIO::Job *, const TQByteArray &)),
+ this, TQ_SLOT(slotReadData(TDEIO::Job *, const TQByteArray &)));
+ connect (m_TDEIO_Job, TQ_SIGNAL(result(TDEIO::Job *)),
+ this, TQ_SLOT(slotIOJobResult(TDEIO::Job *)));
return true;
}