diff options
author | Darrell Anderson <[email protected]> | 2012-09-01 18:02:18 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-09-01 18:02:18 -0500 |
commit | b9cfa4cf5ea09eb72e1650ccc4c7bbdec89838af (patch) | |
tree | f0c591b1012599f18f2a94cdbcd33b660458ad26 | |
parent | 4cc563da102c5ba30ee1a97f162f721669903f66 (diff) | |
parent | 6c72a84e6e27b69e5c5e99cc4996d5a7e03c932e (diff) | |
download | qt3-b9cfa4cf5ea09eb72e1650ccc4c7bbdec89838af.tar.gz qt3-b9cfa4cf5ea09eb72e1650ccc4c7bbdec89838af.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/qt3
-rw-r--r-- | src/styles/qcommonstyle.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/styles/qcommonstyle.cpp b/src/styles/qcommonstyle.cpp index 4bb738a..3e61282 100644 --- a/src/styles/qcommonstyle.cpp +++ b/src/styles/qcommonstyle.cpp @@ -393,6 +393,8 @@ QStyleControlElementData populateControlElementDataFromWidget(const QWidget* wid const QSlider *sl = dynamic_cast<const QSlider*>(widget); if (sl) { ceData.orientation = sl->orientation(); + ceData.minSteps = sl->minValue(); + ceData.maxSteps = sl->maxValue(); ceData.tickMarkSetting = sl->tickmarks(); ceData.tickInterval = sl->tickInterval(); ceData.currentStep = sl->value(); |