diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 02:44:27 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 02:44:27 -0500 |
commit | 4a9d4beee6be253aff4f6d3c8fca4225b14e66cb (patch) | |
tree | cf98aea505b9daac7096c830ffc0397f168e5e0f /src/gui/editors/eventlist | |
parent | 83a1c06d5545f2d076a75fd92a74b8d19c13e9a0 (diff) | |
download | rosegarden-4a9d4beee6be253aff4f6d3c8fca4225b14e66cb.tar.gz rosegarden-4a9d4beee6be253aff4f6d3c8fca4225b14e66cb.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src/gui/editors/eventlist')
-rw-r--r-- | src/gui/editors/eventlist/EventView.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/editors/eventlist/EventView.cpp b/src/gui/editors/eventlist/EventView.cpp index d7f874b..b1f7f87 100644 --- a/src/gui/editors/eventlist/EventView.cpp +++ b/src/gui/editors/eventlist/EventView.cpp @@ -203,7 +203,7 @@ EventView::EventView(RosegardenGUIDoc *doc, std::string timing = rec->getDefaultTimeAdjust(); if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_NONE) { adjust->setCurrentItem(0); - } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH) { + } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH) { adjust->setCurrentItem(3); } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_SYNC_START) { adjust->setCurrentItem(1); @@ -744,7 +744,7 @@ EventView::slotEditTriggerVelocity() void EventView::slotTriggerTimeAdjustChanged(int option) { - std::string adjust = BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH; + std::string adjust = BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH; switch (option) { @@ -758,7 +758,7 @@ EventView::slotTriggerTimeAdjustChanged(int option) adjust = BaseProperties::TRIGGER_SEGMENT_ADJUST_SYNC_END; break; case 3: - adjust = BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH; + adjust = BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH; break; default: |