summaryrefslogtreecommitdiffstats
path: root/src/gvcore
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-09-03 19:56:32 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-09-03 19:56:32 +0200
commit0bfcc16156eefad3c5a9b258433f2c538d3c448d (patch)
tree62aebba231dae57c32dadf3d7069bd052846ff2b /src/gvcore
parente9172f4d91b213c5a1da95405b2605eea86a388a (diff)
downloadgwenview-0bfcc16156eefad3c5a9b258433f2c538d3c448d.tar.gz
gwenview-0bfcc16156eefad3c5a9b258433f2c538d3c448d.zip
Additional k => tde renaming and fixes
Diffstat (limited to 'src/gvcore')
-rw-r--r--src/gvcore/Makefile.am2
-rw-r--r--src/gvcore/document.cpp2
-rw-r--r--src/gvcore/fileopobject.h2
-rw-r--r--src/gvcore/thumbnailloadjob.cpp4
4 files changed, 5 insertions, 5 deletions
diff --git a/src/gvcore/Makefile.am b/src/gvcore/Makefile.am
index 9e981e9..e336c3a 100644
--- a/src/gvcore/Makefile.am
+++ b/src/gvcore/Makefile.am
@@ -6,7 +6,7 @@ libgwenviewcore_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined
libgwenviewcore_la_LIBADD = \
$(LIB_TDEFILE) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_TDEPRINT) $(LIB_QT) \
- $(LIBJPEG) $(LIBPNG) $(LIBMNG) $(GV_LIB_XCURSOR) $(LIB_EXIV2) $(LIB_KPARTS) -ltdefx \
+ $(LIBJPEG) $(LIBPNG) $(LIBMNG) $(GV_LIB_XCURSOR) $(LIB_EXIV2) $(LIB_TDEPARTS) -ltdefx \
-ltdemediaplayer ../imageutils/libgvimageutils.la \
../tsthread/libtsthread.la
diff --git a/src/gvcore/document.cpp b/src/gvcore/document.cpp
index 9908a95..f244a85 100644
--- a/src/gvcore/document.cpp
+++ b/src/gvcore/document.cpp
@@ -182,7 +182,7 @@ void Document::setURL(const KURL& paramURL) {
}
// Set high busy level, so that operations like smoothing are suspended.
- // Otherwise the stat() below done using KIO can take quite long.
+ // Otherwise the stat() below done using TDEIO can take quite long.
BusyLevelManager::instance()->setBusyLevel( this, BUSY_CHECKING_NEW_IMAGE );
diff --git a/src/gvcore/fileopobject.h b/src/gvcore/fileopobject.h
index 584c5ff..29cf54f 100644
--- a/src/gvcore/fileopobject.h
+++ b/src/gvcore/fileopobject.h
@@ -34,7 +34,7 @@ class TQWidget;
namespace Gwenview {
/**
- * This class is a base class for wrappers to KIO slaves asynchronous
+ * This class is a base class for wrappers to TDEIO slaves asynchronous
* file operations. These classes handle all steps of a file operation :
* - asking the user what to do with a file
* - performing the operation
diff --git a/src/gvcore/thumbnailloadjob.cpp b/src/gvcore/thumbnailloadjob.cpp
index 6d1f609..345c6e1 100644
--- a/src/gvcore/thumbnailloadjob.cpp
+++ b/src/gvcore/thumbnailloadjob.cpp
@@ -543,7 +543,7 @@ void ThumbnailLoadJob::determineNextIcon() {
mCurrentURL = mCurrentItem->url();
mCurrentURL.cleanPath();
- // Do direct stat instead of using KIO if the file is local (faster)
+ // Do direct stat instead of using TDEIO if the file is local (faster)
if( mCurrentURL.isLocalFile()
&& !TDEIO::probably_slow_mounted( mCurrentURL.path())) {
KDE_struct_stat buff;
@@ -552,7 +552,7 @@ void ThumbnailLoadJob::determineNextIcon() {
TQTimer::singleShot( 0, this, TQT_SLOT( checkThumbnail()));
}
}
- if( mOriginalTime == 0 ) { // KIO must be used
+ if( mOriginalTime == 0 ) { // TDEIO must be used
TDEIO::Job* job = TDEIO::stat(mCurrentURL,false);
job->setWindow(TDEApplication::kApplication()->mainWidget());
LOG( "TDEIO::stat orig " << mCurrentURL.url() );