diff options
Diffstat (limited to 'ktouch')
-rw-r--r-- | ktouch/src/Makefile.am | 4 | ||||
-rw-r--r-- | ktouch/src/ktouchkeyboard.cpp | 4 | ||||
-rw-r--r-- | ktouch/src/ktouchlecture.cpp | 4 | ||||
-rw-r--r-- | ktouch/src/ktouchstatisticsdata.cpp | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/ktouch/src/Makefile.am b/ktouch/src/Makefile.am index e3661e88..f7b33145 100644 --- a/ktouch/src/Makefile.am +++ b/ktouch/src/Makefile.am @@ -50,11 +50,11 @@ ktouch_SOURCES = ktouchchartwidget.cpp ktouchcoloreditor_dlg.ui \ ktouchutils.cpp main.cpp prefs.kcfgc ktouchcoloreditor.cpp # the library search path. -ktouch_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor +ktouch_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. -ktouch_LDADD = ../../libtdeedu/tdeeduplot/libtdeeduplot.la $(LIB_KIO) +ktouch_LDADD = ../../libtdeedu/tdeeduplot/libtdeeduplot.la $(LIB_TDEIO) rcdir = $(kde_datadir)/ktouch rc_DATA = ktouchui.rc diff --git a/ktouch/src/ktouchkeyboard.cpp b/ktouch/src/ktouchkeyboard.cpp index 9d8a6c9a..6263208d 100644 --- a/ktouch/src/ktouchkeyboard.cpp +++ b/ktouch/src/ktouchkeyboard.cpp @@ -36,7 +36,7 @@ void KTouchKeyboard::clear() { // Loads a keyboard layout (old format) from file (returns true if successful). bool KTouchKeyboard::load(TQWidget * window, const KURL& url) { - // Ok, first download the contents as usual using the KIO lib + // Ok, first download the contents as usual using the TDEIO lib // File is only downloaded if not local, otherwise it's just opened TQString target; bool result = false; @@ -56,7 +56,7 @@ bool KTouchKeyboard::load(TQWidget * window, const KURL& url) { // Loads a lecture (in XML format) from file (returns true if successful). bool KTouchKeyboard::loadXML(TQWidget * window, const KURL& url) { - // Ok, first download the contents as usual using the KIO lib + // Ok, first download the contents as usual using the TDEIO lib // File is only downloaded if not local, otherwise it's just opened TQString target; bool result = false; diff --git a/ktouch/src/ktouchlecture.cpp b/ktouch/src/ktouchlecture.cpp index ce834df5..cb581475 100644 --- a/ktouch/src/ktouchlecture.cpp +++ b/ktouch/src/ktouchlecture.cpp @@ -23,7 +23,7 @@ #include <tdeio/netaccess.h> bool KTouchLecture::load(TQWidget * window, const KURL& url) { - // Ok, first download the contents as usual using the KIO lib + // Ok, first download the contents as usual using the TDEIO lib // File is only downloaded if not local, otherwise it's just opened TQString target; bool result = false; @@ -43,7 +43,7 @@ bool KTouchLecture::load(TQWidget * window, const KURL& url) { // ---------------------------------------------------------------------------- bool KTouchLecture::loadXML(TQWidget * window, const KURL& url) { - // Ok, first download the contents as usual using the KIO lib + // Ok, first download the contents as usual using the TDEIO lib // File is only downloaded if not local, otherwise it's just opened TQString target; bool result = false; diff --git a/ktouch/src/ktouchstatisticsdata.cpp b/ktouch/src/ktouchstatisticsdata.cpp index 4e9d0ef9..295777fd 100644 --- a/ktouch/src/ktouchstatisticsdata.cpp +++ b/ktouch/src/ktouchstatisticsdata.cpp @@ -448,7 +448,7 @@ void KTouchStatisticsData::clear() { bool KTouchStatisticsData::read(TQWidget * window, const KURL& url) { if (url.isEmpty()) return false; - // Ok, first download the contents as usual using the KIO lib + // Ok, first download the contents as usual using the TDEIO lib // File is only downloaded if not local, otherwise it's just opened TQString target; bool result = false; |