summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2010-03-31 15:28:37 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2010-03-31 15:31:21 (GMT)
commit6b074cf855276f7ec67f7b69fe91f0243291c50d (patch)
treef3e3d2bbe0267b1a78433a352bf6d436825f7f36 /src
parent33a2afa8cccc38302539573f8d3559976bf4cc91 (diff)
downloadQt-6b074cf855276f7ec67f7b69fe91f0243291c50d.zip
Qt-6b074cf855276f7ec67f7b69fe91f0243291c50d.tar.gz
Qt-6b074cf855276f7ec67f7b69fe91f0243291c50d.tar.bz2
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')
-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 0079891..a00f4c0 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);