diff options
Diffstat (limited to 'kopete/plugins/webpresence/webpresenceplugin.cpp')
-rw-r--r-- | kopete/plugins/webpresence/webpresenceplugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/plugins/webpresence/webpresenceplugin.cpp b/kopete/plugins/webpresence/webpresenceplugin.cpp index 59cf8315..82525619 100644 --- a/kopete/plugins/webpresence/webpresenceplugin.cpp +++ b/kopete/plugins/webpresence/webpresenceplugin.cpp @@ -73,7 +73,7 @@ WebPresencePlugin::~WebPresencePlugin() void WebPresencePlugin::loadSettings() { - KConfig *kconfig = TDEGlobal::config(); + TDEConfig *kconfig = TDEGlobal::config(); kconfig->setGroup( "Web Presence Plugin" ); frequency = kconfig->readNumEntry("UploadFrequency", 15); @@ -196,12 +196,12 @@ void WebPresencePlugin::slotWriteFile() // upload it to the specified URL KURL src( m_output->name() ); - KIO::FileCopyJob *job = KIO::file_move( src, dest, -1, true, false, false ); - connect( job, TQT_SIGNAL( result( KIO::Job * ) ), - TQT_SLOT( slotUploadJobResult( KIO::Job * ) ) ); + TDEIO::FileCopyJob *job = TDEIO::file_move( src, dest, -1, true, false, false ); + connect( job, TQT_SIGNAL( result( TDEIO::Job * ) ), + TQT_SLOT( slotUploadJobResult( TDEIO::Job * ) ) ); } -void WebPresencePlugin::slotUploadJobResult( KIO::Job *job ) +void WebPresencePlugin::slotUploadJobResult( TDEIO::Job *job ) { if ( job->error() ) { kdDebug(14309) << "Error uploading presence info." << endl; |