summaryrefslogtreecommitdiffstats
path: root/krename/fileoperation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krename/fileoperation.cpp')
-rw-r--r--krename/fileoperation.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krename/fileoperation.cpp b/krename/fileoperation.cpp
index b25cdcb..a678ea7 100644
--- a/krename/fileoperation.cpp
+++ b/krename/fileoperation.cpp
@@ -35,7 +35,7 @@
#include "ProgressDialog.h"
#include "batchrenamer.h"
-using namespace KIO;
+using namespace TDEIO;
FileOperation::FileOperation()
{
@@ -83,8 +83,8 @@ bool FileOperation::start( const KURL & src, const KURL & dest, int mode, bool o
return false;
job->setAutoErrorHandlingEnabled( false, 0 );
- connect( job, TQT_SIGNAL( result (KIO::Job *) ),
- this, TQT_SLOT( slotResult (KIO::Job *) ) );
+ connect( job, TQT_SIGNAL( result (TDEIO::Job *) ),
+ this, TQT_SLOT( slotResult (TDEIO::Job *) ) );
kapp->eventLoop()->enterLoop();
return !result;
@@ -92,7 +92,7 @@ bool FileOperation::start( const KURL & src, const KURL & dest, int mode, bool o
bool FileOperation::fcopy( const TQString & src, const TQString & dest )
{
- return start( KURL( src ), KURL( dest ), KIO::CopyJob::Copy, false );
+ return start( KURL( src ), KURL( dest ), TDEIO::CopyJob::Copy, false );
}
TQString FileOperation::getName( const TQString & file )
@@ -101,7 +101,7 @@ TQString FileOperation::getName( const TQString & file )
return info.fileName();
}
-void FileOperation::slotResult( KIO::Job * job )
+void FileOperation::slotResult( TDEIO::Job * job )
{
result = job->error();
if( result )