Minor update for kioslave rename

remotes/gitea/gg-tdeadmin-kcron
Timothy Pearson 12 years ago
parent 5c51032ff9
commit 5632d42a97

@ -10,7 +10,7 @@ bin_PROGRAMS = kpackage
kpackage_SOURCES = kpackage.cpp managementWidget.cpp packageDisplay.cpp \ kpackage_SOURCES = kpackage.cpp managementWidget.cpp packageDisplay.cpp \
packageProperties.cpp findf.cpp search.cpp \ packageProperties.cpp findf.cpp search.cpp \
options.cpp pkgOptions.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 \ debInterface.cpp debDpkgInterface.cpp debAptInterface.cpp \
updateLoc.cpp procbuf.cpp kplview.cpp \ updateLoc.cpp procbuf.cpp kplview.cpp \
pkgInterface.cpp rpmInterface.cpp kissInterface.cpp \ pkgInterface.cpp rpmInterface.cpp kissInterface.cpp \

@ -55,7 +55,7 @@
#include "kpackage.h" #include "kpackage.h"
#include "managementWidget.h" #include "managementWidget.h"
#include "pkgOptions.h" #include "pkgOptions.h"
#include "kio.h" #include "tdeio.h"
#include "findf.h" #include "findf.h"
#include "search.h" #include "search.h"
#include "options.h" #include "options.h"
@ -643,12 +643,12 @@ TQString KPACKAGE::fetchNetFile( const KURL & url )
} else { } else {
save_url = url; save_url = url;
setStatus(i18n("Starting KIO")); setStatus(i18n("Starting TDEIO"));
Kio kio; Kio kio;
if (kio.download(url, cf)) { if (kio.download(url, cf)) {
setStatus(i18n("KIO finished")); setStatus(i18n("TDEIO finished"));
TQFileInfo fi(cf); TQFileInfo fi(cf);
if (!(fi.exists() && fi.size() > 0)) { if (!(fi.exists() && fi.size() > 0)) {
unlink(TQFile::encodeName(cf)); unlink(TQFile::encodeName(cf));
@ -660,7 +660,7 @@ TQString KPACKAGE::fetchNetFile( const KURL & url )
return cf; return cf;
} }
} else { } else {
setStatus(i18n("KIO failed")); setStatus(i18n("TDEIO failed"));
return ""; return "";
} }
} }

@ -34,7 +34,7 @@
#include "options.h" #include "options.h"
#include "cache.h" #include "cache.h"
#include "updateLoc.h" #include "updateLoc.h"
#include "kio.h" #include "tdeio.h"
extern Opts *opts; extern Opts *opts;
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////

@ -26,7 +26,7 @@
#include <kapplication.h> #include <kapplication.h>
#include <kdebug.h> #include <kdebug.h>
#include "kio.h" #include "tdeio.h"
Kio::Kio() Kio::Kio()
{ {
@ -121,4 +121,4 @@ void Kiod::slotFinished( TDEIO::Job *job )
kapp->exit_loop(); kapp->exit_loop();
} }
#include "kio.moc" #include "tdeio.moc"
Loading…
Cancel
Save