summaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 19:39:01 +0900
committerMichele Calgaro <[email protected]>2025-01-28 16:10:53 +0900
commit07a12d6eb21cce4cd735de6b4a4a17cce152f6a8 (patch)
tree68012ffbb56cb0f0023b257591f3e2218827fda9 /editors
parentf9e07649d38f3ec8c2c599c0ba65a288e8eac5e0 (diff)
downloadtdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.tar.gz
tdevelop-07a12d6eb21cce4cd735de6b4a4a17cce152f6a8.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'editors')
-rw-r--r--editors/editor-chooser/editorchooser_widget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/editor-chooser/editorchooser_widget.cpp b/editors/editor-chooser/editorchooser_widget.cpp
index ae253456..427830d4 100644
--- a/editors/editor-chooser/editorchooser_widget.cpp
+++ b/editors/editor-chooser/editorchooser_widget.cpp
@@ -41,7 +41,7 @@ void EditorChooserWidget::load()
EditorPart->clear();
// find the editor to use
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("Editor");
TQString editor = config->readPathEntry("EmbeddedKTextEditor");
@@ -78,7 +78,7 @@ void EditorChooserWidget::load()
void EditorChooserWidget::save()
{
- TDEConfig *config = kapp->config();
+ TDEConfig *config = tdeApp->config();
config->setGroup("Editor");
TDETrader::OfferList::Iterator it;