summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/kcm/configdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kcm/configdialog.cpp b/src/kcm/configdialog.cpp
index e497dda..b3d1af7 100644
--- a/src/kcm/configdialog.cpp
+++ b/src/kcm/configdialog.cpp
@@ -210,7 +210,7 @@ ConfigDialog::ConfigDialog( TQWidget *parent, const char *name, const TQStringLi
TQCString replyType;
TQByteArray replyData, arg;
TQString selectedInterface = TQString();
- if ( kapp->dcopClient()->call( "kded", "knemod", "getSelectedInterface()", arg, replyType, replyData ) )
+ if ( tdeApp->dcopClient()->call( "kded", "knemod", "getSelectedInterface()", arg, replyType, replyData ) )
{
TQDataStream reply( replyData, IO_ReadOnly );
reply >> selectedInterface;
@@ -430,7 +430,7 @@ void ConfigDialog::save()
if ( mDlg->checkBoxStartKNemo->isChecked() )
{
// This call will implicitly start KNemo if it is not yet running.
- kapp->dcopClient()->send( "kded", "knemod", "reparseConfiguration()", TQString("") );
+ tdeApp->dcopClient()->send( "kded", "knemod", "reparseConfiguration()", TQString("") );
desktop->writeEntry( "X-TDE-Kded-autoload", true );
}
else
@@ -438,7 +438,7 @@ void ConfigDialog::save()
TQByteArray data;
TQDataStream arg(data, IO_WriteOnly);
arg << "knemod";
- kapp->dcopClient()->send("kded", "kded", "unloadModule(TQCString)", data);
+ tdeApp->dcopClient()->send("kded", "kded", "unloadModule(TQCString)", data);
desktop->deleteEntry( "X-TDE-Kded-autoload" );
}
desktop->sync();