summaryrefslogtreecommitdiffstats
path: root/examples/effects
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2009-11-18 12:47:48 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2009-11-18 16:10:18 (GMT)
commite6d6d3830e86202d4f32cd5695f37d4568710562 (patch)
treeb19d21c1b5daf3d46d2eb8ec420e1f1b30b28381 /examples/effects
parent4ae6b3b3ef0467afda9e5592b7e255d7cc0770a0 (diff)
downloadQt-e6d6d3830e86202d4f32cd5695f37d4568710562.zip
Qt-e6d6d3830e86202d4f32cd5695f37d4568710562.tar.gz
Qt-e6d6d3830e86202d4f32cd5695f37d4568710562.tar.bz2
Fix compilation with Sun CC: no semi-colon after Q_PROPERTY
Reviewed-By: Peter Hartmann
Diffstat (limited to 'examples/effects')
-rw-r--r--examples/effects/blurpicker/blurpicker.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/effects/blurpicker/blurpicker.h b/examples/effects/blurpicker/blurpicker.h
index b302db4..6972a39 100644
--- a/examples/effects/blurpicker/blurpicker.h
+++ b/examples/effects/blurpicker/blurpicker.h
@@ -51,7 +51,7 @@
class BlurPicker: public QGraphicsView
{
Q_OBJECT
- Q_PROPERTY(qreal index READ index WRITE setIndex);
+ Q_PROPERTY(qreal index READ index WRITE setIndex)
public:
BlurPicker(QWidget *parent = 0);