diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-09-01 17:59:10 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-09-01 17:59:10 -0500 |
commit | 778e6b59651897a35d65e17cdd80bb7f398e8aa2 (patch) | |
tree | 1170816708d52d80772638e1b89dc1979fa62b5c /src | |
parent | b819aed7f271db4986260ac0c96d819f3c64c545 (diff) | |
parent | 2c0153b9c2fe30289074a29f2cd0f75276219403 (diff) | |
download | tqt3-778e6b59651897a35d65e17cdd80bb7f398e8aa2.tar.gz tqt3-778e6b59651897a35d65e17cdd80bb7f398e8aa2.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tqt3
Diffstat (limited to 'src')
-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 dafef39a2..8557734cf 100644 --- a/src/styles/qcommonstyle.cpp +++ b/src/styles/qcommonstyle.cpp @@ -393,6 +393,8 @@ TQStyleControlElementData populateControlElementDataFromWidget(const TQWidget* w const TQSlider *sl = dynamic_cast<const TQSlider*>(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(); |