summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2009-11-18 13:47:48 +0100
committerJason McDonald <jason.mcdonald@nokia.com>2009-11-26 00:49:31 +1000
commit40b8beb9fed3646532c63e7db8114a8b60a6ba87 (patch)
treef2fe6fd82ad2a300b65402046660fe206f7325cb
parent49360b3237363db2a8d6c6eeafb0aaa83d3efdc0 (diff)
Fix compilation with Sun CC: no semi-colon after Q_PROPERTY
Reviewed-By: Peter Hartmann (cherry picked from commit e6d6d3830e86202d4f32cd5695f37d4568710562)
-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 7f894ed4ae..28cee4b77c 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);