diff options
author | Michele Calgaro <[email protected]> | 2025-01-20 19:39:12 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-01-20 21:02:39 +0900 |
commit | f989443912807e83607d0bb08a6ff7889632cf17 (patch) | |
tree | d58e2ad3c6caae9e0105b30c6a80b0c2cd17c0b4 /kimagemapeditor/kimeshell.cpp | |
parent | ba0eac4558cc2044486988c42039afa274a7db87 (diff) | |
download | tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.tar.gz tdewebdev-f989443912807e83607d0bb08a6ff7889632cf17.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'kimagemapeditor/kimeshell.cpp')
-rw-r--r-- | kimagemapeditor/kimeshell.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kimagemapeditor/kimeshell.cpp b/kimagemapeditor/kimeshell.cpp index 2c69ab22..6352f1ff 100644 --- a/kimagemapeditor/kimeshell.cpp +++ b/kimagemapeditor/kimeshell.cpp @@ -101,7 +101,7 @@ bool KimeShell::queryClose() bool KimeShell::queryExit() { // writeConfig(); - saveProperties(kapp->config()); + saveProperties(tdeApp->config()); return true; } @@ -187,7 +187,7 @@ void KimeShell::fileOpen() void KimeShell::readConfig() { TDEConfig *config; - config = kapp->config(); + config = tdeApp->config(); config->setGroup("General Options"); readConfig(config); @@ -203,7 +203,7 @@ void KimeShell::readConfig(TDEConfig* config) { void KimeShell::writeConfig() { TDEConfig *config; - config = kapp->config(); + config = tdeApp->config(); config->setGroup("General Options"); writeConfig(config); |