summaryrefslogtreecommitdiffstats
path: root/kpackage
diff options
context:
space:
mode:
Diffstat (limited to 'kpackage')
-rw-r--r--kpackage/Makefile.am2
-rw-r--r--kpackage/kpackage.cpp4
-rw-r--r--kpackage/pkgInterface.cpp4
-rw-r--r--kpackage/tdeio.h4
4 files changed, 7 insertions, 7 deletions
diff --git a/kpackage/Makefile.am b/kpackage/Makefile.am
index 1a4eb3c..4d07f68 100644
--- a/kpackage/Makefile.am
+++ b/kpackage/Makefile.am
@@ -20,7 +20,7 @@ kpackage_SOURCES = kpackage.cpp managementWidget.cpp packageDisplay.cpp \
kpackage_METASOURCES = AUTO
# the library search path
-kpackage_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
+kpackage_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
# the libraries to link against. Be aware of the order. First the libraries,
# that depend on the following ones.
diff --git a/kpackage/kpackage.cpp b/kpackage/kpackage.cpp
index 2ba15bf..ffed1a4 100644
--- a/kpackage/kpackage.cpp
+++ b/kpackage/kpackage.cpp
@@ -645,9 +645,9 @@ TQString KPACKAGE::fetchNetFile( const KURL & url )
setStatus(i18n("Starting TDEIO"));
- Kio kio;
+ Kio tdeio;
- if (kio.download(url, cf)) {
+ if (tdeio.download(url, cf)) {
setStatus(i18n("TDEIO finished"));
TQFileInfo fi(cf);
if (!(fi.exists() && fi.size() > 0)) {
diff --git a/kpackage/pkgInterface.cpp b/kpackage/pkgInterface.cpp
index c32bef4..288caf4 100644
--- a/kpackage/pkgInterface.cpp
+++ b/kpackage/pkgInterface.cpp
@@ -259,8 +259,8 @@ TQString pkgInterface::getPackList(cacheObj *cp)
if (kpkg)
kpackage->setStatus(i18n("Starting Kio"));
- Kio kio;
- if (kio.download(url, tmpf)) {
+ Kio tdeio;
+ if (tdeio.download(url, tmpf)) {
if (kpkg)
kpackage->setStatus(i18n("Kio finished"));
TQFileInfo f(tmpf);
diff --git a/kpackage/tdeio.h b/kpackage/tdeio.h
index 83e9794..30c35b8 100644
--- a/kpackage/tdeio.h
+++ b/kpackage/tdeio.h
@@ -25,8 +25,8 @@
*/
-#ifndef KP_KIO_H
-#define KP_KIO_H
+#ifndef KP_TDEIO_H
+#define KP_TDEIO_H
#include <vector>