From f21aaec952493cb5688c73de6e82a569ddbd7fb2 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:36:20 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kopete/plugins/webpresence/webpresenceplugin.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kopete/plugins/webpresence/webpresenceplugin.cpp') 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; -- cgit v1.2.1