diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:43:20 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:43:20 -0600 |
commit | 5632d42a9736b114d8cf86d398a327e7b088846f (patch) | |
tree | e39c1c99f14ceae022d6f811855c11392170ede3 /kpackage | |
parent | 5c51032ff9745b09bb16c980b1c87195197e9e72 (diff) | |
download | tdeadmin-5632d42a9736b114d8cf86d398a327e7b088846f.tar.gz tdeadmin-5632d42a9736b114d8cf86d398a327e7b088846f.zip |
Minor update for kioslave rename
Diffstat (limited to 'kpackage')
-rw-r--r-- | kpackage/Makefile.am | 2 | ||||
-rw-r--r-- | kpackage/kpackage.cpp | 8 | ||||
-rw-r--r-- | kpackage/pkgInterface.cpp | 2 | ||||
-rw-r--r-- | kpackage/tdeio.cpp (renamed from kpackage/kio.cpp) | 4 | ||||
-rw-r--r-- | kpackage/tdeio.h (renamed from kpackage/kio.h) | 0 |
5 files changed, 8 insertions, 8 deletions
diff --git a/kpackage/Makefile.am b/kpackage/Makefile.am index 04939be..57d62d3 100644 --- a/kpackage/Makefile.am +++ b/kpackage/Makefile.am @@ -10,7 +10,7 @@ bin_PROGRAMS = kpackage kpackage_SOURCES = kpackage.cpp managementWidget.cpp packageDisplay.cpp \ packageProperties.cpp findf.cpp search.cpp \ options.cpp pkgOptions.cpp \ - packageInfo.cpp cache.cpp main.cpp utils.cpp kio.cpp \ + packageInfo.cpp cache.cpp main.cpp utils.cpp tdeio.cpp \ debInterface.cpp debDpkgInterface.cpp debAptInterface.cpp \ updateLoc.cpp procbuf.cpp kplview.cpp \ pkgInterface.cpp rpmInterface.cpp kissInterface.cpp \ diff --git a/kpackage/kpackage.cpp b/kpackage/kpackage.cpp index 7c24e17..310ae0e 100644 --- a/kpackage/kpackage.cpp +++ b/kpackage/kpackage.cpp @@ -55,7 +55,7 @@ #include "kpackage.h" #include "managementWidget.h" #include "pkgOptions.h" -#include "kio.h" +#include "tdeio.h" #include "findf.h" #include "search.h" #include "options.h" @@ -643,12 +643,12 @@ TQString KPACKAGE::fetchNetFile( const KURL & url ) } else { save_url = url; - setStatus(i18n("Starting KIO")); + setStatus(i18n("Starting TDEIO")); Kio kio; if (kio.download(url, cf)) { - setStatus(i18n("KIO finished")); + setStatus(i18n("TDEIO finished")); TQFileInfo fi(cf); if (!(fi.exists() && fi.size() > 0)) { unlink(TQFile::encodeName(cf)); @@ -660,7 +660,7 @@ TQString KPACKAGE::fetchNetFile( const KURL & url ) return cf; } } else { - setStatus(i18n("KIO failed")); + setStatus(i18n("TDEIO failed")); return ""; } } diff --git a/kpackage/pkgInterface.cpp b/kpackage/pkgInterface.cpp index c3f9a7e..984628d 100644 --- a/kpackage/pkgInterface.cpp +++ b/kpackage/pkgInterface.cpp @@ -34,7 +34,7 @@ #include "options.h" #include "cache.h" #include "updateLoc.h" -#include "kio.h" +#include "tdeio.h" extern Opts *opts; ////////////////////////////////////////////////////////////////////////////// diff --git a/kpackage/kio.cpp b/kpackage/tdeio.cpp index 89e2100..111b803 100644 --- a/kpackage/kio.cpp +++ b/kpackage/tdeio.cpp @@ -26,7 +26,7 @@ #include <kapplication.h> #include <kdebug.h> -#include "kio.h" +#include "tdeio.h" Kio::Kio() { @@ -121,4 +121,4 @@ void Kiod::slotFinished( TDEIO::Job *job ) kapp->exit_loop(); } -#include "kio.moc" +#include "tdeio.moc" diff --git a/kpackage/kio.h b/kpackage/tdeio.h index 83e9794..83e9794 100644 --- a/kpackage/kio.h +++ b/kpackage/tdeio.h |