diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-07-06 05:46:31 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-07-06 05:46:31 (GMT) |
commit | 49dccb31d1e31c4d538f65c62e20268fc2496a6e (patch) | |
tree | a6c930fc8e0056a505475ab24be5233ee8ca859a /src/gui/dialogs/qprogressdialog.cpp | |
parent | c9d487b6ed3ac9bb666c2a1fe08252f3c6dcb455 (diff) | |
parent | 7369eaf32dd45b6fb4e72c34bee2c9a44c62a5b4 (diff) | |
download | Qt-49dccb31d1e31c4d538f65c62e20268fc2496a6e.zip Qt-49dccb31d1e31c4d538f65c62e20268fc2496a6e.tar.gz Qt-49dccb31d1e31c4d538f65c62e20268fc2496a6e.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Conflicts:
doc/src/declarative/extending.qdoc
Diffstat (limited to 'src/gui/dialogs/qprogressdialog.cpp')
-rw-r--r-- | src/gui/dialogs/qprogressdialog.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gui/dialogs/qprogressdialog.cpp b/src/gui/dialogs/qprogressdialog.cpp index a2d7b23..d64c847 100644 --- a/src/gui/dialogs/qprogressdialog.cpp +++ b/src/gui/dialogs/qprogressdialog.cpp @@ -153,6 +153,13 @@ void QProgressDialogPrivate::layout() const bool centered = bool(q->style()->styleHint(QStyle::SH_ProgressDialog_CenterCancelButton, 0, q)); + int additionalSpacing = 0; +#ifdef Q_OS_SYMBIAN + //In Symbian, we need to have wider margins for dialog borders, as the actual border is some pixels + //inside the dialog area (to enable transparent borders) + additionalSpacing = mlr; +#endif + QSize cs = cancel ? cancel->sizeHint() : QSize(0,0); QSize bh = bar->sizeHint(); int cspc; @@ -185,8 +192,8 @@ void QProgressDialogPrivate::layout() } if (label) - label->setGeometry(mlr, 0, q->width()-mlr*2, lh); - bar->setGeometry(mlr, lh+sp, q->width()-mlr*2, bh.height()); + label->setGeometry(mlr, additionalSpacing, q->width() - mlr * 2, lh); + bar->setGeometry(mlr, lh + sp + additionalSpacing, q->width() - mlr * 2, bh.height()); } void QProgressDialogPrivate::retranslateStrings() |