summaryrefslogtreecommitdiffstats
path: root/src/widgets/styles/qproxystyle.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2012-11-27 00:06:14 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-04 14:54:57 +0100
commit14dab5b2d7cb7b6b32d9672758c0f3b5d4ec3354 (patch)
tree8206805908b2c9da0edd6619845a0019cc5d95d2 /src/widgets/styles/qproxystyle.h
parent4b7276b93f21e4b131c8840ca2f6c6bf4f003595 (diff)
Add QProxyStyle(QString key) constructor for convenience
The QStyle implementations are becoming private, so the following slightly verbose pattern seems to be now repeated a lot: new QProxyStyle(QStyleFactory::create("windows")) This change adds an alternative, more convenient constructor for this particular use case: new QProxyStyle("windows") Change-Id: I97ded597a0fd3225a6354ebea0abb367237430af Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/widgets/styles/qproxystyle.h')
-rw-r--r--src/widgets/styles/qproxystyle.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/widgets/styles/qproxystyle.h b/src/widgets/styles/qproxystyle.h
index 62a263b520..d1623c745c 100644
--- a/src/widgets/styles/qproxystyle.h
+++ b/src/widgets/styles/qproxystyle.h
@@ -55,7 +55,8 @@ class Q_WIDGETS_EXPORT QProxyStyle : public QCommonStyle
Q_OBJECT
public:
- QProxyStyle(QStyle *baseStyle = 0);
+ QProxyStyle(QStyle *style = 0);
+ QProxyStyle(const QString &key);
~QProxyStyle();
QStyle *baseStyle() const;