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/notation/NotationView.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/notation/NotationView.cpp')
-rw-r--r-- | src/gui/editors/notation/NotationView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/editors/notation/NotationView.cpp b/src/gui/editors/notation/NotationView.cpp index 7965718..d545f76 100644 --- a/src/gui/editors/notation/NotationView.cpp +++ b/src/gui/editors/notation/NotationView.cpp @@ -4805,7 +4805,7 @@ void NotationView::slotEditPaste() (clipboard->getSingleSegment()->getEndTime() - clipboard->getSingleSegment()->getStartTime()); - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup(NotationViewConfigGroup); PasteEventsCommand::PasteType defaultType = (PasteEventsCommand::PasteType) config->readUnsignedNumEntry("pastetype", @@ -4839,7 +4839,7 @@ void NotationView::slotEditGeneralPaste() LinedStaff *staff = getCurrentLinedStaff(); Segment &segment = staff->getSegment(); - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup(NotationViewConfigGroup); PasteEventsCommand::PasteType defaultType = (PasteEventsCommand::PasteType) config->readUnsignedNumEntry("pastetype", |