summaryrefslogtreecommitdiff
path: root/src/declarative/graphicsitems/qdeclarativepathview_p.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-03-31 17:28:37 +0200
committerThiago Macieira <thiago.macieira@nokia.com>2010-03-31 17:31:21 +0200
commit6b074cf855276f7ec67f7b69fe91f0243291c50d (patch)
treef3e3d2bbe0267b1a78433a352bf6d436825f7f36 /src/declarative/graphicsitems/qdeclarativepathview_p.h
parent33a2afa8cccc38302539573f8d3559976bf4cc91 (diff)
downloadqt4-tools-6b074cf855276f7ec67f7b69fe91f0243291c50d.tar.gz
Fix compilation with Sun CC: no semi-colon after Q_ENUM.
Error was: "graphicsitems/qdeclarativepathview_p.h", line 80: Error: "}" expected instead of ";" Reviewed-by: Olivier Goffart
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativepathview_p.h')
-rw-r--r--src/declarative/graphicsitems/qdeclarativepathview_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepathview_p.h b/src/declarative/graphicsitems/qdeclarativepathview_p.h
index 0079891e4a..a00f4c0bd1 100644
--- a/src/declarative/graphicsitems/qdeclarativepathview_p.h
+++ b/src/declarative/graphicsitems/qdeclarativepathview_p.h
@@ -77,7 +77,7 @@ class Q_DECLARATIVE_EXPORT QDeclarativePathView : public QDeclarativeItem
Q_PROPERTY(QDeclarativeComponent *delegate READ delegate WRITE setDelegate NOTIFY delegateChanged)
Q_PROPERTY(int pathItemCount READ pathItemCount WRITE setPathItemCount NOTIFY pathItemCountChanged)
- Q_ENUMS(HighlightRangeMode);
+ Q_ENUMS(HighlightRangeMode)
public:
QDeclarativePathView(QDeclarativeItem *parent=0);