diff options
Diffstat (limited to 'src/gui/studio/BankEditorDialog.cpp')
-rw-r--r-- | src/gui/studio/BankEditorDialog.cpp | 4 |
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()); |