diff options
Diffstat (limited to 'src/gvcore/fileoperation.h')
-rw-r--r-- | src/gvcore/fileoperation.h | 6 |
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: |