summaryrefslogtreecommitdiffstats
path: root/src/gvcore/fileoperation.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:13 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:13 -0600
commitf10950a5b2fef43a5f3a99170682eea55fe9b80b (patch)
treeaaaec7f404be3c85dba99e083c63a46d4e29184d /src/gvcore/fileoperation.h
parente9654e1a22ff355962fd97168f051336b814f4aa (diff)
downloadgwenview-f10950a5b2fef43a5f3a99170682eea55fe9b80b.tar.gz
gwenview-f10950a5b2fef43a5f3a99170682eea55fe9b80b.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/gvcore/fileoperation.h')
-rw-r--r--src/gvcore/fileoperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gvcore/fileoperation.h b/src/gvcore/fileoperation.h
index 2faaef7..79f7495 100644
--- a/src/gvcore/fileoperation.h
+++ b/src/gvcore/fileoperation.h
@@ -67,16 +67,16 @@ public:
public slots:
void copy() {
- KIO::copy(mSrc, mDst, true);
+ TDEIO::copy(mSrc, mDst, true);
}
void move() {
- KIO::move(mSrc, mDst, true);
+ TDEIO::move(mSrc, mDst, true);
if (mWasMoved) *mWasMoved=true;
}
void link() {
- KIO::link(mSrc, mDst, true);
+ TDEIO::link(mSrc, mDst, true);
}
private: