diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-05-26 08:32:28 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-05-26 08:32:28 (GMT) |
commit | b29a83e5070410359ebed2d99b18f86bbe2d2939 (patch) | |
tree | 12f80963df2780d58be36d6365e2c65852ef9e83 /src/declarative/widgets/graphicslayouts.h | |
parent | 19038ba0847d3b8ed476d8c3c1d29332d4f80677 (diff) | |
download | Qt-b29a83e5070410359ebed2d99b18f86bbe2d2939.zip Qt-b29a83e5070410359ebed2d99b18f86bbe2d2939.tar.gz Qt-b29a83e5070410359ebed2d99b18f86bbe2d2939.tar.bz2 |
Remove extraneous semicolons.
Caused massive number of warnings with winscw
Diffstat (limited to 'src/declarative/widgets/graphicslayouts.h')
-rw-r--r-- | src/declarative/widgets/graphicslayouts.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/declarative/widgets/graphicslayouts.h b/src/declarative/widgets/graphicslayouts.h index e9930f1..303f749 100644 --- a/src/declarative/widgets/graphicslayouts.h +++ b/src/declarative/widgets/graphicslayouts.h @@ -52,8 +52,8 @@ QT_BEGIN_NAMESPACE QT_MODULE(Declarative) -QML_DECLARE_INTERFACE(QGraphicsLayoutItem); -QML_DECLARE_INTERFACE(QGraphicsLayout); +QML_DECLARE_INTERFACE(QGraphicsLayoutItem) +QML_DECLARE_INTERFACE(QGraphicsLayout) class QGraphicsLinearLayoutStretchItemObject : public QObject, public QGraphicsLayoutItem { @@ -64,7 +64,7 @@ public: virtual QSizeF sizeHint(Qt::SizeHint, const QSizeF &) const; }; -QML_DECLARE_TYPE(QGraphicsLinearLayoutStretchItemObject); +QML_DECLARE_TYPE(QGraphicsLinearLayoutStretchItemObject) //TODO: // -content margins @@ -120,7 +120,7 @@ private: ChildList _children; }; -QML_DECLARE_TYPE(QGraphicsLinearLayoutObject); +QML_DECLARE_TYPE(QGraphicsLinearLayoutObject) //TODO: // -content margins @@ -181,7 +181,7 @@ private: ChildList _children; }; -QML_DECLARE_TYPE(QGraphicsGridLayoutObject); +QML_DECLARE_TYPE(QGraphicsGridLayoutObject) #endif // GRAPHICSLAYOUTS_H |