aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/universal/qquickuniversaltheme_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2016-03-17 15:46:46 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2016-03-18 22:14:34 +0000
commit09e83913e9bfee232d436773a9a08f153aa00a70 (patch)
tree0b907bd45dd57a2d7f410f755a0f2868aa5147c5 /src/imports/controls/universal/qquickuniversaltheme_p.h
parent94136244c58ed035be44183bd8eb00314bccf7df (diff)
Cleanup QQuickProxyStyle
Install and remove the proxy theme automatically to eliminate the need for TestTheme do it in tst_applicationwindow. Furthermore, fix some Qt coding conventions, align header guards, remove unneeded empty destructor, and add missing explicit keywords for one-parameter constructors and cleanup somemeaningless ones in paremeterless ctors. Change-Id: Ib95dad003e35e468e941f3a0d2be5b21323fcccd Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/universal/qquickuniversaltheme_p.h')
-rw-r--r--src/imports/controls/universal/qquickuniversaltheme_p.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/imports/controls/universal/qquickuniversaltheme_p.h b/src/imports/controls/universal/qquickuniversaltheme_p.h
index 07e4905d..0435d46c 100644
--- a/src/imports/controls/universal/qquickuniversaltheme_p.h
+++ b/src/imports/controls/universal/qquickuniversaltheme_p.h
@@ -34,8 +34,8 @@
**
****************************************************************************/
-#ifndef QQUICKUNIVERSALTHEME_H
-#define QQUICKUNIVERSALTHEME_H
+#ifndef QQUICKUNIVERSALTHEME_P_H
+#define QQUICKUNIVERSALTHEME_P_H
//
// W A R N I N G
@@ -48,7 +48,6 @@
// We mean it.
//
-#include <QtGui/qpa/qplatformtheme.h>
#include <QtGui/qfont.h>
#include <QtQuickControls/private/qquickproxytheme_p.h>
@@ -57,9 +56,7 @@ QT_BEGIN_NAMESPACE
class QQuickUniversalTheme : public QQuickProxyTheme
{
public:
- QQuickUniversalTheme(QPlatformTheme *theme);
-
- ~QQuickUniversalTheme();
+ explicit QQuickUniversalTheme(QPlatformTheme *theme = nullptr);
const QFont *font(Font type = SystemFont) const override;
@@ -71,4 +68,4 @@ private:
QT_END_NAMESPACE
-#endif // QQUICKUNIVERSALTHEME_H
+#endif // QQUICKUNIVERSALTHEME_P_H