summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-11-01 11:32:51 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-01 16:12:15 +0100
commit196c5bfe0fdd245e1819a0247afca0c3371fc0d5 (patch)
tree0c489f568c152a9dd3cc2da7e0a4264dd2ad6b7a /tests/auto
parent3de5a8e78be307145340e0867de53dc607eae59c (diff)
Compile fix for tst_qstylesheetstyle.cpp
There was a semicolon missing. Change-Id: Id2eb843604907acf952d7d238f80ba8a7010ccd1 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp b/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
index 29846d619a..d5ac0c20a8 100644
--- a/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
+++ b/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
@@ -1589,7 +1589,7 @@ class ChangeEventWidget : public QWidget
static bool recurse = false;
if (!recurse) {
recurse = true;
- QStyle *style = new QFusionStyle
+ QStyle *style = new QFusionStyle;
style->setParent(this);
setStyle(style);
recurse = false;