summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/input/dvbclient
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
commitf2418d2c076f47e5552bd365e14bc705fa449545 (patch)
tree0a3e54d6662d8753d01857be88f140a51370c18a /kaffeine/src/input/dvbclient
parenta488f17322d7ab91533147362613723797cbe2a5 (diff)
downloadkaffeine-f2418d2c076f47e5552bd365e14bc705fa449545.tar.gz
kaffeine-f2418d2c076f47e5552bd365e14bc705fa449545.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kaffeine@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaffeine/src/input/dvbclient')
-rw-r--r--kaffeine/src/input/dvbclient/cdwidget.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kaffeine/src/input/dvbclient/cdwidget.cpp b/kaffeine/src/input/dvbclient/cdwidget.cpp
index f71579d..7c80c88 100644
--- a/kaffeine/src/input/dvbclient/cdwidget.cpp
+++ b/kaffeine/src/input/dvbclient/cdwidget.cpp
@@ -180,32 +180,32 @@ void CdWidget::updateList( const TQString &list )
chan.clear();
if ( list=="quit" ) return;
- while ( (pos = s.tqfind("|"))!=-1 ) {
+ while ( (pos = s.find("|"))!=-1 ) {
name = s.left( pos );
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
vpid = s.left( pos ).toInt();
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
apid = s.left( pos ).toInt();
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
if ( s.left( pos )=="n" ) ac3 = 0;
else ac3 = 1;
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
subpid = s.left( pos ).toInt();
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
page = s.left( pos ).toInt();
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
id = s.left( pos ).toInt();
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
type = s.left( pos ).toInt();
s = s.right( s.length()-pos-1 );
- pos = s.tqfind("|");
+ pos = s.find("|");
lang = s.left( pos );
s = s.right( s.length()-pos-1 );
chan.append( new CdChannel( name, vpid, apid, ac3, subpid, page, id, type, lang ) );