summaryrefslogtreecommitdiffstats
path: root/src/gui/styles/qwindowsmobilestyle.cpp
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-10 13:12:08 (GMT)
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-12 11:05:55 (GMT)
commit693b34e8c8d434fd4cde6bfd5f4944e6f9283532 (patch)
treeab22f50dc11fa20515b20fc6ac8608a1b2fb243c /src/gui/styles/qwindowsmobilestyle.cpp
parent70ad574793adf908f3aae96a58cda229dceb8cf8 (diff)
downloadQt-693b34e8c8d434fd4cde6bfd5f4944e6f9283532.zip
Qt-693b34e8c8d434fd4cde6bfd5f4944e6f9283532.tar.gz
Qt-693b34e8c8d434fd4cde6bfd5f4944e6f9283532.tar.bz2
respect QAbstractSpinBox::NoButtons in windowsce / windowsmobile styles
Code is adapted from QCommonStyle which handles this case for other styles. Reviewed-by: thartman
Diffstat (limited to 'src/gui/styles/qwindowsmobilestyle.cpp')
-rw-r--r--src/gui/styles/qwindowsmobilestyle.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/styles/qwindowsmobilestyle.cpp b/src/gui/styles/qwindowsmobilestyle.cpp
index efc2892..85d828b 100644
--- a/src/gui/styles/qwindowsmobilestyle.cpp
+++ b/src/gui/styles/qwindowsmobilestyle.cpp
@@ -2984,7 +2984,11 @@ QRect QWindowsMobileStyle::subControlRect(ComplexControl control, const QStyleOp
rect = QRect(x + bs.width(), 0, bs.width(), bs.height());
break;
case SC_SpinBoxEditField:
+ if (spinBox->buttonSymbols == QAbstractSpinBox::NoButtons) {
+ rect = QRect(lx, fw, spinBox->rect.width() - 2*fw - 2, spinBox->rect.height() - 2*fw);
+ } else {
rect = QRect(lx, fw, rx-2, spinBox->rect.height() - 2*fw);
+ }
break;
case SC_SpinBoxFrame:
rect = spinBox->rect;