From 4bb787f41f7cdefac2aac33ef59317b7157302c1 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:38:13 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kwallet/allyourbase.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kwallet/allyourbase.cpp') diff --git a/kwallet/allyourbase.cpp b/kwallet/allyourbase.cpp index b7dbc64..b75a04f 100644 --- a/kwallet/allyourbase.cpp +++ b/kwallet/allyourbase.cpp @@ -282,13 +282,13 @@ void KWalletItem::dropped(TQDropEvent *e, const TQValueList& lst return; } TQString tmpFile; - if (KIO::NetAccess::download(u, tmpFile, 0L)) { + if (TDEIO::NetAccess::download(u, tmpFile, 0L)) { file.setName(tmpFile); file.open(IO_ReadOnly); ds = new TQDataStream(&file); - KIO::NetAccess::removeTempFile(tmpFile); + TDEIO::NetAccess::removeTempFile(tmpFile); } else { - KMessageBox::error(iconView(), KIO::NetAccess::lastErrorString()); + KMessageBox::error(iconView(), TDEIO::NetAccess::lastErrorString()); } } if (ds) { @@ -439,7 +439,7 @@ void KWalletEntryList::itemDropped(TQDropEvent *e, TQListViewItem *item) { return; } TQString tmpFile; - if (KIO::NetAccess::download(u, tmpFile, 0L)) { + if (TDEIO::NetAccess::download(u, tmpFile, 0L)) { file.setName(tmpFile); file.open(IO_ReadOnly); ds = new TQDataStream(&file); @@ -459,9 +459,9 @@ void KWalletEntryList::itemDropped(TQDropEvent *e, TQListViewItem *item) { //set the file back to the beginning file.reset(); ds = new TQDataStream(&file); - KIO::NetAccess::removeTempFile(tmpFile); + TDEIO::NetAccess::removeTempFile(tmpFile); } else { - KMessageBox::error(this, KIO::NetAccess::lastErrorString()); + KMessageBox::error(this, TDEIO::NetAccess::lastErrorString()); return; } } else { @@ -662,7 +662,7 @@ void KWalletIconView::slotDropped(TQDropEvent *e, const TQValueListaccept(); } -- cgit v1.2.3