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/NotationHLayout.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/NotationHLayout.cpp')
-rw-r--r-- | src/gui/editors/notation/NotationHLayout.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/editors/notation/NotationHLayout.cpp b/src/gui/editors/notation/NotationHLayout.cpp index fec7422..eb1e490 100644 --- a/src/gui/editors/notation/NotationHLayout.cpp +++ b/src/gui/editors/notation/NotationHLayout.cpp @@ -73,7 +73,7 @@ NotationHLayout::NotationHLayout(Composition *c, NotePixmapFactory *npf, { // NOTATION_DEBUG << "NotationHLayout::NotationHLayout()" << endl; - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("Notation Options"); m_keySigCancelMode = config->readNumEntry("keysigcancelmode", 1); } @@ -253,7 +253,7 @@ NotationHLayout::scanStaff(Staff &staff, timeT startTime, timeT endTime) NOTATION_DEBUG << "ottava shift at start:" << ottavaShift << ", ottavaEnd " << ottavaEnd << endl; - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("Notation Options"); int accOctaveMode = config->readNumEntry("accidentaloctavemode", 1); @@ -1264,7 +1264,7 @@ NotationHLayout::layout(BarDataMap::iterator i, timeT startTime, timeT endTime) int startBar = getComposition()->getBarNumber(startTime); - TDEConfig *config = kapp->config(); + TDEConfig *config = tdeApp->config(); config->setGroup("Notation Options"); bool showInvisibles = config->readBoolEntry("showinvisibles", true); |