diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-20 17:21:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-02-03 21:39:44 +0900 |
commit | 52fb3a0dd7d190b83257b86738b313a02868d133 (patch) | |
tree | ad5e6f9e72e0ea0820861a05c185e11ae39edcf3 /noatun/modules/infrared/irprefs.cpp | |
parent | 4767a3730d12a9e9f2d428d46da80467d73e5015 (diff) | |
download | tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.tar.gz tdemultimedia-52fb3a0dd7d190b83257b86738b313a02868d133.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun/modules/infrared/irprefs.cpp')
-rw-r--r-- | noatun/modules/infrared/irprefs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noatun/modules/infrared/irprefs.cpp b/noatun/modules/infrared/irprefs.cpp index 50df64cd..829f51aa 100644 --- a/noatun/modules/infrared/irprefs.cpp +++ b/noatun/modules/infrared/irprefs.cpp @@ -103,7 +103,7 @@ IRPrefs::IRPrefs(TQObject *parent) void IRPrefs::save() { - TDEConfig *c = kapp->config(); + TDEConfig *c = tdeApp->config(); TDEConfigGroupSaver groupSaver(c, "Infrared"); c->writeEntry("CommandCount", s_commands.count()); int i = 1; @@ -282,7 +282,7 @@ void IRPrefs::readConfig() { if (s_configRead) return; - TDEConfig *c = kapp->config(); + TDEConfig *c = tdeApp->config(); TDEConfigGroupSaver groupSaver(c, "Infrared"); int count = c->readNumEntry("CommandCount"); for (int i = 1; i <= count; ++i) |