summaryrefslogtreecommitdiffstats
path: root/kio/kioexec
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:35:07 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:35:07 -0600
commit703fb0c89c2eee56a1e613e67a446db9d4287929 (patch)
treedd8c5ca66075cd89c2638a2b48cf78386a9870a7 /kio/kioexec
parent818e7abec3d5d3809b6b77293558678371c16b71 (diff)
downloadtdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.tar.gz
tdelibs-703fb0c89c2eee56a1e613e67a446db9d4287929.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kio/kioexec')
-rw-r--r--kio/kioexec/main.cpp24
-rw-r--r--kio/kioexec/main.h4
2 files changed, 14 insertions, 14 deletions
diff --git a/kio/kioexec/main.cpp b/kio/kioexec/main.cpp
index 22c539a75..40badcbe0 100644
--- a/kio/kioexec/main.cpp
+++ b/kio/kioexec/main.cpp
@@ -61,11 +61,11 @@ static KCmdLineOptions options[] =
int jobCounter = 0;
-TQPtrList<KIO::Job>* jobList = 0L;
+TQPtrList<TDEIO::Job>* jobList = 0L;
KIOExec::KIOExec()
{
- jobList = new TQPtrList<KIO::Job>;
+ jobList = new TQPtrList<TDEIO::Job>;
jobList->setAutoDelete( false ); // jobs autodelete themselves
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
@@ -83,7 +83,7 @@ KIOExec::KIOExec()
{
KURL url = args->url(i);
// we need to map system:/ etc to make sure we get this right
- url = KIO::NetAccess::mostLocalURL( url, 0 );
+ url = TDEIO::NetAccess::mostLocalURL( url, 0 );
//kdDebug() << "url=" << url.url() << " filename=" << url.fileName() << endl;
// A local file, not an URL ?
@@ -105,7 +105,7 @@ KIOExec::KIOExec()
else
// We must fetch the file
{
- TQString fileName = KIO::encodeFileName( url.fileName() );
+ TQString fileName = TDEIO::encodeFileName( url.fileName() );
if ( !suggestedFileName.isEmpty() )
fileName = suggestedFileName;
// Build the destination filename, in ~/.trinity/cache-*/krun/
@@ -122,10 +122,10 @@ KIOExec::KIOExec()
KURL dest;
dest.setPath( tmp );
kdDebug() << "Copying " << url.prettyURL() << " to " << dest << endl;
- KIO::Job *job = KIO::file_copy( url, dest );
+ TDEIO::Job *job = TDEIO::file_copy( url, dest );
jobList->append( job );
- connect( job, TQT_SIGNAL( result( KIO::Job * ) ), TQT_SLOT( slotResult( KIO::Job * ) ) );
+ connect( job, TQT_SIGNAL( result( TDEIO::Job * ) ), TQT_SLOT( slotResult( TDEIO::Job * ) ) );
}
}
}
@@ -143,16 +143,16 @@ KIOExec::KIOExec()
slotResult( 0L );
}
-void KIOExec::slotResult( KIO::Job * job )
+void KIOExec::slotResult( TDEIO::Job * job )
{
if (job && job->error())
{
// That error dialog would be queued, i.e. not immediate...
//job->showErrorDialog();
- if ( (job->error() != KIO::ERR_USER_CANCELED) )
+ if ( (job->error() != TDEIO::ERR_USER_CANCELED) )
KMessageBox::error( 0L, job->errorString() );
- TQString path = static_cast<KIO::FileCopyJob*>(job)->destURL().path();
+ TQString path = static_cast<TDEIO::FileCopyJob*>(job)->destURL().path();
TQValueList<fileInfo>::Iterator it = fileList.begin();
for(;it != fileList.end(); ++it)
@@ -164,7 +164,7 @@ void KIOExec::slotResult( KIO::Job * job )
if ( it != fileList.end() )
fileList.remove( it );
else
- kdDebug() << static_cast<KIO::FileCopyJob*>(job)->destURL().path() << " not found in list" << endl;
+ kdDebug() << static_cast<TDEIO::FileCopyJob*>(job)->destURL().path() << " not found in list" << endl;
}
counter++;
@@ -246,9 +246,9 @@ void KIOExec::slotRunApp()
{
kdDebug() << TQString(TQString("src='%1' dest='%2'").arg(src).arg(dest.url())).ascii() << endl;
// Do it the synchronous way.
- if ( !KIO::NetAccess::upload( src, dest, 0 ) )
+ if ( !TDEIO::NetAccess::upload( src, dest, 0 ) )
{
- KMessageBox::error( 0L, KIO::NetAccess::lastErrorString() );
+ KMessageBox::error( 0L, TDEIO::NetAccess::lastErrorString() );
continue; // don't delete the temp file
}
}
diff --git a/kio/kioexec/main.h b/kio/kioexec/main.h
index 6a5dee65e..beb6a2297 100644
--- a/kio/kioexec/main.h
+++ b/kio/kioexec/main.h
@@ -6,7 +6,7 @@
#include <tqstrlist.h>
#include <tqtimer.h>
-namespace KIO { class Job; }
+namespace TDEIO { class Job; }
class KIOExec : public TQObject
{
@@ -15,7 +15,7 @@ public:
KIOExec();
public slots:
- void slotResult( KIO::Job * );
+ void slotResult( TDEIO::Job * );
void slotRunApp();
protected: