summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-21 11:30:26 +0900
committerMichele Calgaro <[email protected]>2025-01-21 11:30:26 +0900
commit9f601313c76c01867b24826da091d53b2e22c1e7 (patch)
treebeecd0823ecfda4dcebd16908a7238c28643140f
parentdb0362f8323ec49c8b4ba3ef8493cfcef71dcd5c (diff)
downloadknemo-rename/tdeapp.tar.gz
knemo-rename/tdeapp.zip
Use tdeApprename/tdeapp
Signed-off-by: Michele Calgaro <[email protected]>
-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();