summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/streaming/streaming-job.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-16 09:57:04 -0600
committerTimothy Pearson <[email protected]>2011-12-16 09:57:04 -0600
commit6df9eac4b9928768bf0c3dc988bac1c0c1fbb685 (patch)
treee9c9e6486689b74eac0c7c4af8e910df3942fa31 /kradio3/plugins/streaming/streaming-job.cpp
parent5fb78f4b68672906005b059e7e5066c702bc5c90 (diff)
downloadtderadio-6df9eac4b9928768bf0c3dc988bac1c0c1fbb685.tar.gz
tderadio-6df9eac4b9928768bf0c3dc988bac1c0c1fbb685.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 5fb78f4b68672906005b059e7e5066c702bc5c90.
Diffstat (limited to 'kradio3/plugins/streaming/streaming-job.cpp')
-rw-r--r--kradio3/plugins/streaming/streaming-job.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kradio3/plugins/streaming/streaming-job.cpp b/kradio3/plugins/streaming/streaming-job.cpp
index 3266618..4374de9 100644
--- a/kradio3/plugins/streaming/streaming-job.cpp
+++ b/kradio3/plugins/streaming/streaming-job.cpp
@@ -201,7 +201,7 @@ void StreamingJob::slotReadData (KIO::Job */*job*/, const TQByteArray &data)
size_t free = m_Buffer.getFreeSize();
if (free < data.size()) {
m_SkipCount += data.size() - free;
- emit logStreamWarning(m_URL, i18n("skipped %1 bytes").arg(data.size() - free));
+ emit logStreamWarning(m_URL, i18n("skipped %1 bytes").tqarg(data.size() - free));
}
else {
free = data.size();