diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 937b2991d8e78166eea904c80ad04d34607017a4 (patch) | |
tree | 2accb8161eab09df5d7a5484ea9ea080ad123168 /kget/kmainwidget.cpp | |
parent | dba26cb985af370c33d1767037851705cc561726 (diff) | |
download | tdenetwork-937b2991d8e78166eea904c80ad04d34607017a4.tar.gz tdenetwork-937b2991d8e78166eea904c80ad04d34607017a4.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kget/kmainwidget.cpp')
-rw-r--r-- | kget/kmainwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kget/kmainwidget.cpp b/kget/kmainwidget.cpp index 6e830d67..aa65437e 100644 --- a/kget/kmainwidget.cpp +++ b/kget/kmainwidget.cpp @@ -555,7 +555,7 @@ void KMainWidget::slotImportTextFile() list = kFileToString(filename.path()); // file not accessible -> give error message i = 0; - while ((j = list.tqfind('\n', i)) != -1) { + while ((j = list.find('\n', i)) != -1) { TQString newtransfer = list.mid(i, j - i); addTransfer(newtransfer); i = j + 1; @@ -2466,7 +2466,7 @@ bool KMainWidget::sanityChecksSuccessful( const KURL& url ) return false; } // if we find this URL in the list - Transfer *transfer = myTransferList->tqfind( url ); + Transfer *transfer = myTransferList->find( url ); if ( transfer ) { if ( transfer->gettqStatus() != Transfer::ST_FINISHED ) |