summaryrefslogtreecommitdiffstats
path: root/kradio3/plugins/streaming
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit2620ed602b1dc0a7bc3c3135ee12361b1af25405 (patch)
tree382e1bc273f19af4e5dd261f79741046ed9e37c6 /kradio3/plugins/streaming
parentfdd75d807795e8fcf6286df1fb185153ac623efd (diff)
downloadtderadio-2620ed602b1dc0a7bc3c3135ee12361b1af25405.tar.gz
tderadio-2620ed602b1dc0a7bc3c3135ee12361b1af25405.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kradio@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kradio3/plugins/streaming')
-rw-r--r--kradio3/plugins/streaming/streaming.cpp54
1 files changed, 27 insertions, 27 deletions
diff --git a/kradio3/plugins/streaming/streaming.cpp b/kradio3/plugins/streaming/streaming.cpp
index 6b2d371..7634fa2 100644
--- a/kradio3/plugins/streaming/streaming.cpp
+++ b/kradio3/plugins/streaming/streaming.cpp
@@ -184,7 +184,7 @@ AboutPageInfo StreamingDevice::createAboutPage()
bool StreamingDevice::preparePlayback(SoundStreamID id, const TQString &channel, bool /*active_mode*/, bool start_immediately)
{
- if (id.isValid() && m_PlaybackChannels.tqfind(channel)) {
+ if (id.isValid() && m_PlaybackChannels.find(channel)) {
m_AllPlaybackStreams.insert(id, channel);
if (start_immediately)
startPlayback(id);
@@ -197,7 +197,7 @@ bool StreamingDevice::preparePlayback(SoundStreamID id, const TQString &channel,
bool StreamingDevice::prepareCapture(SoundStreamID id, const TQString &channel)
{
logDebug("StreamingDevice::prepareCapture");
- if (id.isValid() && m_CaptureChannels.tqfind(channel)) {
+ if (id.isValid() && m_CaptureChannels.find(channel)) {
m_AllCaptureStreams.insert(id, channel);
return true;
}
@@ -206,9 +206,9 @@ bool StreamingDevice::prepareCapture(SoundStreamID id, const TQString &channel)
bool StreamingDevice::releasePlayback(SoundStreamID id)
{
- if (id.isValid() && m_AllPlaybackStreams.tqcontains(id)) {
+ if (id.isValid() && m_AllPlaybackStreams.contains(id)) {
stopPlayback(id);
- if (!m_EnabledPlaybackStreams.tqcontains(id))
+ if (!m_EnabledPlaybackStreams.contains(id))
m_AllPlaybackStreams.remove(id);
return true;
}
@@ -218,9 +218,9 @@ bool StreamingDevice::releasePlayback(SoundStreamID id)
bool StreamingDevice::releaseCapture(SoundStreamID id)
{
logDebug("StreamingDevice::releaseCapture");
- if (id.isValid() && m_AllCaptureStreams.tqcontains(id)) {
+ if (id.isValid() && m_AllCaptureStreams.contains(id)) {
stopCapture(id);
- if (!m_EnabledCaptureStreams.tqcontains(id))
+ if (!m_EnabledCaptureStreams.contains(id))
m_AllCaptureStreams.remove(id);
return true;
}
@@ -241,9 +241,9 @@ bool StreamingDevice::supportsCapture() const
bool StreamingDevice::startPlayback(SoundStreamID id)
{
- if (id.isValid() && m_AllPlaybackStreams.tqcontains(id)) {
+ if (id.isValid() && m_AllPlaybackStreams.contains(id)) {
m_EnabledPlaybackStreams.insert(id, m_AllPlaybackStreams[id]);
- StreamingJob &x = *m_PlaybackChannels.tqfind(m_AllPlaybackStreams[id]);
+ StreamingJob &x = *m_PlaybackChannels.find(m_AllPlaybackStreams[id]);
x.startPlayback();
return true;
} else {
@@ -261,8 +261,8 @@ bool StreamingDevice::pausePlayback(SoundStreamID /*id*/)
bool StreamingDevice::stopPlayback(SoundStreamID id)
{
- if (id.isValid() && m_EnabledPlaybackStreams.tqcontains(id)) {
- StreamingJob &x = *m_PlaybackChannels.tqfind(m_AllPlaybackStreams[id]);
+ if (id.isValid() && m_EnabledPlaybackStreams.contains(id)) {
+ StreamingJob &x = *m_PlaybackChannels.find(m_AllPlaybackStreams[id]);
if (x.stopPlayback()) {
m_EnabledPlaybackStreams.remove(id);
}
@@ -275,7 +275,7 @@ bool StreamingDevice::stopPlayback(SoundStreamID id)
bool StreamingDevice::isPlaybackRunning(SoundStreamID id, bool &b) const
{
- if (id.isValid() && m_EnabledPlaybackStreams.tqcontains(id)) {
+ if (id.isValid() && m_EnabledPlaybackStreams.contains(id)) {
b = true;
return true;
} else {
@@ -289,9 +289,9 @@ bool StreamingDevice::startCaptureWithFormat(SoundStreamID id,
bool force_format)
{
logDebug("StreamingDevice::startCaptureWithFormat");
- if (id.isValid() && m_AllCaptureStreams.tqcontains(id)) {
+ if (id.isValid() && m_AllCaptureStreams.contains(id)) {
m_EnabledCaptureStreams.insert(id, m_AllCaptureStreams[id]);
- StreamingJob &x = *m_CaptureChannels.tqfind(m_AllCaptureStreams[id]);
+ StreamingJob &x = *m_CaptureChannels.find(m_AllCaptureStreams[id]);
x.startCapture(proposed_format, real_format, force_format);
return true;
} else {
@@ -302,8 +302,8 @@ bool StreamingDevice::startCaptureWithFormat(SoundStreamID id,
bool StreamingDevice::stopCapture(SoundStreamID id)
{
- if (id.isValid() && m_EnabledCaptureStreams.tqcontains(id)) {
- StreamingJob &x = *m_CaptureChannels.tqfind(m_AllCaptureStreams[id]);
+ if (id.isValid() && m_EnabledCaptureStreams.contains(id)) {
+ StreamingJob &x = *m_CaptureChannels.find(m_AllCaptureStreams[id]);
if (x.stopCapture()) {
m_EnabledCaptureStreams.remove(id);
}
@@ -316,8 +316,8 @@ bool StreamingDevice::stopCapture(SoundStreamID id)
bool StreamingDevice::isCaptureRunning(SoundStreamID id, bool &b, SoundFormat &sf) const
{
- if (id.isValid() && m_EnabledCaptureStreams.tqcontains(id)) {
- StreamingJob &x = *m_CaptureChannels.tqfind(m_AllCaptureStreams[id]);
+ if (id.isValid() && m_EnabledCaptureStreams.contains(id)) {
+ StreamingJob &x = *m_CaptureChannels.find(m_AllCaptureStreams[id]);
sf = x.getSoundFormat();
b = true;
return true;
@@ -339,22 +339,22 @@ bool StreamingDevice::noticeSoundStreamRedirected(SoundStreamID oldID, SoundStre
{
bool found = false;
if (newID != oldID) {
- if (m_AllPlaybackStreams.tqcontains(oldID)) {
+ if (m_AllPlaybackStreams.contains(oldID)) {
m_AllPlaybackStreams.insert(newID, m_AllPlaybackStreams[oldID]);
m_AllPlaybackStreams.remove(oldID);
found = true;
}
- if (m_EnabledPlaybackStreams.tqcontains(oldID)) {
+ if (m_EnabledPlaybackStreams.contains(oldID)) {
m_EnabledPlaybackStreams.insert(newID, m_EnabledPlaybackStreams[oldID]);
m_EnabledPlaybackStreams.remove(oldID);
found = true;
}
- if (m_AllCaptureStreams.tqcontains(oldID)) {
+ if (m_AllCaptureStreams.contains(oldID)) {
m_AllCaptureStreams.insert(newID, m_AllCaptureStreams[oldID]);
m_AllCaptureStreams.remove(oldID);
found = true;
}
- if (m_EnabledCaptureStreams.tqcontains(oldID)) {
+ if (m_EnabledCaptureStreams.contains(oldID)) {
m_EnabledCaptureStreams.insert(newID, m_EnabledCaptureStreams[oldID]);
m_EnabledCaptureStreams.remove(oldID);
found = true;
@@ -370,8 +370,8 @@ bool StreamingDevice::noticeSoundStreamData(SoundStreamID id,
const SoundMetaData &/*md*/
)
{
- if (id.isValid() && m_EnabledPlaybackStreams.tqcontains(id)) {
- StreamingJob &x = *m_CaptureChannels.tqfind(m_AllCaptureStreams[id]);
+ if (id.isValid() && m_EnabledPlaybackStreams.contains(id)) {
+ StreamingJob &x = *m_CaptureChannels.find(m_AllCaptureStreams[id]);
x.playData(data, size, consumed_size);
return true;
}
@@ -382,9 +382,9 @@ bool StreamingDevice::noticeSoundStreamData(SoundStreamID id,
bool StreamingDevice::noticeReadyForPlaybackData(SoundStreamID id, size_t free_size)
{
- if (!id.isValid() || !m_AllCaptureStreams.tqcontains(id))
+ if (!id.isValid() || !m_AllCaptureStreams.contains(id))
return false;
- StreamingJob &x = *m_CaptureChannels.tqfind(m_AllCaptureStreams[id]);
+ StreamingJob &x = *m_CaptureChannels.find(m_AllCaptureStreams[id]);
while (x.hasRecordedData() && free_size > 0) {
const char *buffer = NULL;
@@ -440,7 +440,7 @@ void StreamingDevice::logStreamWarning(const KURL &url, const TQString &s)
bool StreamingDevice::getPlaybackStreamOptions(const TQString &channel, TQString &url, SoundFormat &sf, size_t &buffer_size) const
{
- if (m_PlaybackChannels.tqfind(channel)) {
+ if (m_PlaybackChannels.find(channel)) {
const StreamingJob *j = m_PlaybackChannels[channel];
url = j->getURL();
sf = j->getSoundFormat();
@@ -453,7 +453,7 @@ bool StreamingDevice::getPlaybackStreamOptions(const TQString &channel, TQString
bool StreamingDevice::getCaptureStreamOptions(const TQString &channel, TQString &url, SoundFormat &sf, size_t &buffer_size) const
{
- if (m_CaptureChannels.tqfind(channel)) {
+ if (m_CaptureChannels.find(channel)) {
const StreamingJob *j = m_CaptureChannels[channel];
url = j->getURL();
sf = j->getSoundFormat();