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/dialogs | |
parent | 83a1c06d5545f2d076a75fd92a74b8d19c13e9a0 (diff) | |
download | rosegarden-4a9d4beee6be253aff4f6d3c8fca4225b14e66cb.tar.gz rosegarden-4a9d4beee6be253aff4f6d3c8fca4225b14e66cb.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src/gui/dialogs')
-rw-r--r-- | src/gui/dialogs/QuantizeDialog.h | 4 | ||||
-rw-r--r-- | src/gui/dialogs/TriggerSegmentDialog.cpp | 6 | ||||
-rw-r--r-- | src/gui/dialogs/UseOrnamentDialog.cpp | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/dialogs/QuantizeDialog.h b/src/gui/dialogs/QuantizeDialog.h index d6133fa..f7c2077 100644 --- a/src/gui/dialogs/QuantizeDialog.h +++ b/src/gui/dialogs/QuantizeDialog.h @@ -23,8 +23,8 @@ COPYING included with this distribution for more information. */ -#ifndef _RG_TQUANTIZEDIALOG_H_ -#define _RG_TQUANTIZEDIALOG_H_ +#ifndef _RG_QUANTIZEDIALOG_H_ +#define _RG_QUANTIZEDIALOG_H_ #include <kdialogbase.h> diff --git a/src/gui/dialogs/TriggerSegmentDialog.cpp b/src/gui/dialogs/TriggerSegmentDialog.cpp index 0d3c0e4..85035df 100644 --- a/src/gui/dialogs/TriggerSegmentDialog.cpp +++ b/src/gui/dialogs/TriggerSegmentDialog.cpp @@ -101,7 +101,7 @@ TriggerSegmentDialog::setupFromConfig() std::string timing = qstrtostr (config->readEntry ("triggersegmenttiming", - strtoqstr(BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH))); + strtoqstr(BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH))); bool retune = config->readBoolEntry("triggersegmentretune", true); if (seg >= 0 && seg < m_segment->count()) @@ -109,7 +109,7 @@ TriggerSegmentDialog::setupFromConfig() if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_NONE) { m_adjustTime->setCurrentItem(0); - } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH) { + } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH) { m_adjustTime->setCurrentItem(3); } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_SYNC_START) { m_adjustTime->setCurrentItem(1); @@ -157,7 +157,7 @@ TriggerSegmentDialog::getTimeAdjust() const case 2: return BaseProperties::TRIGGER_SEGMENT_ADJUST_SYNC_END; case 3: - return BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH; + return BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH; default: return BaseProperties::TRIGGER_SEGMENT_ADJUST_NONE; diff --git a/src/gui/dialogs/UseOrnamentDialog.cpp b/src/gui/dialogs/UseOrnamentDialog.cpp index 21c9220..279f9f7 100644 --- a/src/gui/dialogs/UseOrnamentDialog.cpp +++ b/src/gui/dialogs/UseOrnamentDialog.cpp @@ -150,7 +150,7 @@ UseOrnamentDialog::setupFromConfig() std::string timing = qstrtostr (config->readEntry ("useornamenttiming", - strtoqstr(BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH))); + strtoqstr(BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH))); bool retune = config->readBoolEntry("useornamentretune", true); size_t i = 0; @@ -172,7 +172,7 @@ UseOrnamentDialog::setupFromConfig() if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_NONE) { m_adjustTime->setCurrentItem(0); - } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH) { + } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH) { m_adjustTime->setCurrentItem(3); } else if (timing == BaseProperties::TRIGGER_SEGMENT_ADJUST_SYNC_START) { m_adjustTime->setCurrentItem(1); @@ -229,7 +229,7 @@ UseOrnamentDialog::getTimeAdjust() const case 2: return BaseProperties::TRIGGER_SEGMENT_ADJUST_SYNC_END; case 3: - return BaseProperties::TRIGGER_SEGMENT_ADJUST_STQUISH; + return BaseProperties::TRIGGER_SEGMENT_ADJUST_SQUISH; default: return BaseProperties::TRIGGER_SEGMENT_ADJUST_NONE; |