summaryrefslogtreecommitdiff
path: root/muse2/synti/organ/organgui.cpp
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2010-12-08 08:22:29 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2010-12-08 08:22:29 +0000
commit4a1be16bbfafb8455b54336c4465da8f8bfe3ab6 (patch)
tree01cbdba041d5e864294909d834c1a189f0edb98b /muse2/synti/organ/organgui.cpp
parentf681783c513b54002aa4dfec2566f26bfc38689b (diff)
ported many Qt3 methods to Qt4
Diffstat (limited to 'muse2/synti/organ/organgui.cpp')
-rw-r--r--muse2/synti/organ/organgui.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/muse2/synti/organ/organgui.cpp b/muse2/synti/organ/organgui.cpp
index 340c67f6..9b763fd6 100644
--- a/muse2/synti/organ/organgui.cpp
+++ b/muse2/synti/organ/organgui.cpp
@@ -84,7 +84,7 @@ void OrganGui::ctrlChanged(int idx)
QSlider* slider = (QSlider*)(ctrl->editor);
val = slider->value();
// By T356. Apply auto-bias center value.
- if(slider->minValue() < 0)
+ if(slider->minimum() < 0)
val += 8192;
}
else if (ctrl->type == SynthGuiCtrl::SWITCH) {
@@ -106,8 +106,8 @@ int OrganGui::getControllerMinMax(int id, int* min, int* max) const
//int val = 0;
if (ctrl->type == SynthGuiCtrl::SLIDER) {
QSlider* slider = (QSlider*)(ctrl->editor);
- *max = slider->maxValue();
- *min = slider->minValue();
+ *max = slider->maximum();
+ *min = slider->minimum();
//val = (slider->value() * 16383 + max/2) / max;
//val = 16383 + 1/2
@@ -140,12 +140,12 @@ void OrganGui::setParam(int param, int val)
ctrl->editor->blockSignals(true);
if (ctrl->type == SynthGuiCtrl::SLIDER) {
QSlider* slider = (QSlider*)(ctrl->editor);
-// int max = slider->maxValue();
+// int max = slider->maximum();
// if(val < 0) val = (val * max + 8191) / 16383 - 1;
// else val = (val * max + 8191) / 16383;
// By T356. Apply auto-bias center value.
- if(slider->minValue() < 0)
+ if(slider->minimum() < 0)
val -= 8192;
#ifdef ORGANGUI_DEBUG