diff options
author | Michele Calgaro <[email protected]> | 2025-01-21 11:30:26 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-02-03 21:54:52 +0900 |
commit | c32ebae5781871a6d0c13e2892d82577679eb5a3 (patch) | |
tree | 74f7619c13bdfc47bc9f8eee042a72a0492a938c /src/kcm | |
parent | e8b10dc2c1576c2e1b043b69602ee1a544e73f72 (diff) | |
download | knemo-master.tar.gz knemo-master.zip |
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kcm')
-rw-r--r-- | src/kcm/configdialog.cpp | 6 |
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(); |