diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:38:13 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:38:13 -0600 |
| commit | 4bb787f41f7cdefac2aac33ef59317b7157302c1 (patch) | |
| tree | c9726401d4eeb6fff8e78c4e35facb644c417e77 /kwallet/allyourbase.cpp | |
| parent | aef5eada7f51ee48f3d21448db290bd8f06953a8 (diff) | |
| download | tdeutils-4bb787f41f7cdefac2aac33ef59317b7157302c1.tar.gz tdeutils-4bb787f41f7cdefac2aac33ef59317b7157302c1.zip | |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kwallet/allyourbase.cpp')
| -rw-r--r-- | kwallet/allyourbase.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
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<TQIconDragItem>& 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 TQValueList<TQIconDragIt } // FIXME: verify that it is a real wallet file first - KIO::NetAccess::file_copy(u, KURL::fromPathOrURL(dest)); + TDEIO::NetAccess::file_copy(u, KURL::fromPathOrURL(dest)); e->accept(); } |
