summaryrefslogtreecommitdiffstats
path: root/kget/kmainwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kget/kmainwidget.cpp')
-rw-r--r--kget/kmainwidget.cpp4
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 )