diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-01-22 18:11:56 +0900 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2025-02-03 14:04:22 +0000 |
commit | f44cabe8c88eec154ea9a457b749c5fcd9bed4c3 (patch) | |
tree | bca8f3c429d932cb22fb4fe93edb35335f28717c /src/gui/editors/segment/ControlEditorDialog.cpp | |
parent | 06042c0471231bf41b46d4a8744393137beac468 (diff) | |
download | rosegarden-f44cabe8c88eec154ea9a457b749c5fcd9bed4c3.tar.gz rosegarden-f44cabe8c88eec154ea9a457b749c5fcd9bed4c3.zip |
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/editors/segment/ControlEditorDialog.cpp')
-rw-r--r-- | src/gui/editors/segment/ControlEditorDialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/editors/segment/ControlEditorDialog.cpp b/src/gui/editors/segment/ControlEditorDialog.cpp index 3c1fcd3..abc6564 100644 --- a/src/gui/editors/segment/ControlEditorDialog.cpp +++ b/src/gui/editors/segment/ControlEditorDialog.cpp @@ -115,7 +115,7 @@ ControlEditorDialog::ControlEditorDialog(TQWidget *parent, for (int i = 1; i < 9; ++i) m_listView->setColumnAlignment(i, TQt::AlignHCenter); - m_listView->restoreLayout(kapp->config(), ControlEditorConfigGroup); + m_listView->restoreLayout(tdeApp->config(), ControlEditorConfigGroup); TQFrame* btnBox = new TQFrame(mainFrame); @@ -178,7 +178,7 @@ ControlEditorDialog::~ControlEditorDialog() { RG_DEBUG << "\n*** ControlEditorDialog::~ControlEditorDialog\n" << endl; - m_listView->saveLayout(kapp->config(), ControlEditorConfigGroup); + m_listView->saveLayout(tdeApp->config(), ControlEditorConfigGroup); if (m_doc) m_doc->getCommandHistory()->detachView(actionCollection()); |