From 937b2991d8e78166eea904c80ad04d34607017a4 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- kget/kmainwidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kget/kmainwidget.cpp') 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 ) -- cgit v1.2.1