summaryrefslogtreecommitdiffstats
path: root/kdirstat
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-09-03 19:57:03 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-09-03 19:57:03 +0200
commita045bba8d3ddbd05ed6d2e8316cc7512d50f9ccf (patch)
treec3cdf8aa24a033e30b9a7f4a8824b68e85a05f32 /kdirstat
parent418799732257aee56ff5d506509338ab83f70feb (diff)
downloadkdirstat-a045bba8d3ddbd05ed6d2e8316cc7512d50f9ccf.tar.gz
kdirstat-a045bba8d3ddbd05ed6d2e8316cc7512d50f9ccf.zip
Additional k => tde renaming and fixes
Diffstat (limited to 'kdirstat')
-rw-r--r--kdirstat/Makefile.am2
-rw-r--r--kdirstat/kdirtree.cpp2
-rw-r--r--kdirstat/kdirtree.h8
3 files changed, 6 insertions, 6 deletions
diff --git a/kdirstat/Makefile.am b/kdirstat/Makefile.am
index d4312fc..cb54fd9 100644
--- a/kdirstat/Makefile.am
+++ b/kdirstat/Makefile.am
@@ -85,7 +85,7 @@ INCLUDES= $(all_includes)
METASOURCES = AUTO
# the library search path.
-kdirstat_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
+kdirstat_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
rcdir = $(kde_datadir)/kdirstat
rc_DATA = kdirstatui.rc
diff --git a/kdirstat/kdirtree.cpp b/kdirstat/kdirtree.cpp
index ae8cf14..6bb6360 100644
--- a/kdirstat/kdirtree.cpp
+++ b/kdirstat/kdirtree.cpp
@@ -1231,7 +1231,7 @@ KDirTree::startReading( const KURL & url )
}
else
{
- // kdDebug() << "Using KIO methods for " << url.url() << endl;
+ // kdDebug() << "Using TDEIO methods for " << url.url() << endl;
KURL cleanUrl( url );
cleanUrl.cleanPath(); // Resolve relative paths, get rid of multiple '/'
_readMethod = KDirReadKIO;
diff --git a/kdirstat/kdirtree.h b/kdirstat/kdirtree.h
index ca1eda4..e7a2a33 100644
--- a/kdirstat/kdirtree.h
+++ b/kdirstat/kdirtree.h
@@ -71,7 +71,7 @@ namespace KDirStat
{
KDirReadUnknown, // Unknown (yet)
KDirReadLocal, // Use opendir() and lstat()
- KDirReadKIO // Use KDE 2.x's KIO network transparent methods
+ KDirReadKIO // Use KDE 2.x's TDEIO network transparent methods
} KDirReadMethod;
@@ -82,7 +82,7 @@ namespace KDirStat
* Information about one single directory entry. This is the type of info
* typically obtained by stat() / lstat() or similar calls. Most of this
* can also be obtained by @ref TDEIO::KDirListJob, but not all: The device
- * this file resides on is something none of KIO's many classes will tell
+ * this file resides on is something none of TDEIO's many classes will tell
* (since of course this only makes sense for local files) - yet this had
* been _the_ single most requested feature of KDirStat <1.0: Stay on one
* filesystem. To facilitate this, information about the device is
@@ -1071,13 +1071,13 @@ namespace KDirStat
protected slots:
/**
- * Receive directory entries from a KIO job.
+ * Receive directory entries from a TDEIO job.
**/
void entries( TDEIO::Job * job,
const TDEIO::UDSEntryList & entryList );
/**
- * KIO job is finished.
+ * TDEIO job is finished.
**/
void finished( TDEIO::Job * job );