summaryrefslogtreecommitdiffstats
path: root/src/gui/studio/BankEditorDialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-01-22 18:11:56 +0900
committerTDE Gitea <gitea@mirror.git.trinitydesktop.org>2025-02-03 14:04:22 +0000
commitf44cabe8c88eec154ea9a457b749c5fcd9bed4c3 (patch)
treebca8f3c429d932cb22fb4fe93edb35335f28717c /src/gui/studio/BankEditorDialog.cpp
parent06042c0471231bf41b46d4a8744393137beac468 (diff)
downloadrosegarden-f44cabe8c88eec154ea9a457b749c5fcd9bed4c3.tar.gz
rosegarden-f44cabe8c88eec154ea9a457b749c5fcd9bed4c3.zip
Use tdeApp
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/gui/studio/BankEditorDialog.cpp')
-rw-r--r--src/gui/studio/BankEditorDialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/studio/BankEditorDialog.cpp b/src/gui/studio/BankEditorDialog.cpp
index 3116884..3b9b5c6 100644
--- a/src/gui/studio/BankEditorDialog.cpp
+++ b/src/gui/studio/BankEditorDialog.cpp
@@ -130,7 +130,7 @@ BankEditorDialog::BankEditorDialog(TQWidget *parent,
m_listView->setRootIsDecorated(true);
m_listView->setShowSortIndicator(true);
m_listView->setItemsRenameable(true);
- m_listView->restoreLayout(kapp->config(), BankEditorConfigGroup);
+ m_listView->restoreLayout(tdeApp->config(), BankEditorConfigGroup);
TQFrame *bankBox = new TQFrame(leftPart);
TQGridLayout *gridLayout = new TQGridLayout(bankBox, 4, 2, 6, 6);
@@ -292,7 +292,7 @@ BankEditorDialog::~BankEditorDialog()
{
RG_DEBUG << "~BankEditorDialog()\n";
- m_listView->saveLayout(kapp->config(), BankEditorConfigGroup);
+ m_listView->saveLayout(tdeApp->config(), BankEditorConfigGroup);
if (m_doc) // see slotFileClose() for an explanation on why we need to test m_doc
m_doc->getCommandHistory()->detachView(actionCollection());