diff options
author | qCaro <qt-info@nokia.com> | 2010-06-07 09:28:34 (GMT) |
---|---|---|
committer | qCaro <qt-info@nokia.com> | 2010-06-07 09:28:34 (GMT) |
commit | 20522a164d7eed20c71ceef7845b5df2b47ed25e (patch) | |
tree | 02a48b7acb2e59db3dd0617fb282dabe19639a88 | |
parent | 4325864c7b0017dd4d2e0aa060f01a319a6bdeaa (diff) | |
download | Qt-20522a164d7eed20c71ceef7845b5df2b47ed25e.zip Qt-20522a164d7eed20c71ceef7845b5df2b47ed25e.tar.gz Qt-20522a164d7eed20c71ceef7845b5df2b47ed25e.tar.bz2 |
Fix style sheet error with slider handle
Reviewed-by: Olivier
-rw-r--r-- | src/gui/styles/qstylesheetstyle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/styles/qstylesheetstyle.cpp b/src/gui/styles/qstylesheetstyle.cpp index 0b615bc..3201fdd 100644 --- a/src/gui/styles/qstylesheetstyle.cpp +++ b/src/gui/styles/qstylesheetstyle.cpp @@ -3184,7 +3184,7 @@ void QStyleSheetStyle::drawComplexControl(ComplexControl cc, const QStyleOptionC subRule2.drawRule(p, r); } - handleSubRule.drawRule(p, grooveSubRule.boxRect(hr, Margin)); + handleSubRule.drawRule(p, handleSubRule.boxRect(hr, Margin)); } if (slider->subControls & SC_SliderTickmarks) { |