diff options
author | Darrell Anderson <[email protected]> | 2012-04-13 02:44:27 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-04-13 02:44:27 -0500 |
commit | 4a9d4beee6be253aff4f6d3c8fca4225b14e66cb (patch) | |
tree | cf98aea505b9daac7096c830ffc0397f168e5e0f /src/gui/editors/notation/NoteStyle.cpp | |
parent | 83a1c06d5545f2d076a75fd92a74b8d19c13e9a0 (diff) | |
download | rosegarden-4a9d4beee6be253aff4f6d3c8fca4225b14e66cb.tar.gz rosegarden-4a9d4beee6be253aff4f6d3c8fca4225b14e66cb.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src/gui/editors/notation/NoteStyle.cpp')
-rw-r--r-- | src/gui/editors/notation/NoteStyle.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/editors/notation/NoteStyle.cpp b/src/gui/editors/notation/NoteStyle.cpp index 1e316fd..0b3332d 100644 --- a/src/gui/editors/notation/NoteStyle.cpp +++ b/src/gui/editors/notation/NoteStyle.cpp @@ -225,8 +225,8 @@ NoteStyle::getNoteHeadCharName(Note::Type type) } else if (desc.shape == Rectangle) { - name = desc.filled ? NoteCharacterNames::STQUARE_NOTEHEAD_BLACK - : NoteCharacterNames::STQUARE_NOTEHEAD_WHITE; + name = desc.filled ? NoteCharacterNames::SQUARE_NOTEHEAD_BLACK + : NoteCharacterNames::SQUARE_NOTEHEAD_WHITE; } else if (desc.shape == Number) { @@ -327,7 +327,7 @@ NoteStyle::getRestCharName(Note::Type type, bool restOutsideStave) case Note::Quaver: return NoteCharacterNames::EIGHTH_REST; case Note::Crotchet: - return NoteCharacterNames::TQUARTER_REST; + return NoteCharacterNames::QUARTER_REST; case Note::Minim: return restOutsideStave ? NoteCharacterNames::HALF_REST |