summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxlistview.h
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-05-26 23:05:28 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-05-26 23:05:28 (GMT)
commitd15db788de792815a35547059921d3305d48c119 (patch)
treecc599d805ac076fa0a67c00c4e1cd27da0307cde /src/declarative/fx/qfxlistview.h
parenta43ea2e6f5feffa44119a54e25a9fffdd435c389 (diff)
downloadQt-d15db788de792815a35547059921d3305d48c119.zip
Qt-d15db788de792815a35547059921d3305d48c119.tar.gz
Qt-d15db788de792815a35547059921d3305d48c119.tar.bz2
Remove more unneeded semicolons.
Diffstat (limited to 'src/declarative/fx/qfxlistview.h')
-rw-r--r--src/declarative/fx/qfxlistview.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/declarative/fx/qfxlistview.h b/src/declarative/fx/qfxlistview.h
index 4aa9810..5dfb0e4 100644
--- a/src/declarative/fx/qfxlistview.h
+++ b/src/declarative/fx/qfxlistview.h
@@ -55,24 +55,24 @@ class QFxListViewPrivate;
class Q_DECLARATIVE_EXPORT QFxListView : public QFxFlickable
{
Q_OBJECT
- Q_DECLARE_PRIVATE(QFxListView);
-
- Q_ENUMS(CurrentItemPositioning);
- Q_PROPERTY(QVariant model READ model WRITE setModel);
- Q_CLASSINFO("DefaultProperty", "delegate");
- Q_PROPERTY(QmlComponent *delegate READ delegate WRITE setDelegate);
- Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentIndexChanged);
- Q_PROPERTY(QFxItem *current READ currentItem NOTIFY currentIndexChanged);
- Q_PROPERTY(int count READ count NOTIFY countChanged);
- Q_PROPERTY(QmlComponent *highlight READ highlight WRITE setHighlight);
- Q_PROPERTY(bool autoHighlight READ autoHighlight WRITE setAutoHighlight);
- Q_PROPERTY(CurrentItemPositioning currentItemPositioning READ currentItemPositioning WRITE setCurrentItemPositioning);
- Q_PROPERTY(int snapPosition READ snapPosition WRITE setSnapPosition);
- Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation);
- Q_PROPERTY(bool wrap READ isWrapEnabled WRITE setWrapEnabled);
- Q_PROPERTY(int cacheBuffer READ cacheBuffer WRITE setCacheBuffer);
- Q_PROPERTY(QString sectionExpression READ sectionExpression WRITE setSectionExpression NOTIFY sectionExpressionChanged);
- Q_PROPERTY(QString currentSection READ currentSection NOTIFY currentSectionChanged);
+ Q_DECLARE_PRIVATE(QFxListView)
+
+ Q_ENUMS(CurrentItemPositioning)
+ Q_PROPERTY(QVariant model READ model WRITE setModel)
+ Q_CLASSINFO("DefaultProperty", "delegate")
+ Q_PROPERTY(QmlComponent *delegate READ delegate WRITE setDelegate)
+ Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentIndexChanged)
+ Q_PROPERTY(QFxItem *current READ currentItem NOTIFY currentIndexChanged)
+ Q_PROPERTY(int count READ count NOTIFY countChanged)
+ Q_PROPERTY(QmlComponent *highlight READ highlight WRITE setHighlight)
+ Q_PROPERTY(bool autoHighlight READ autoHighlight WRITE setAutoHighlight)
+ Q_PROPERTY(CurrentItemPositioning currentItemPositioning READ currentItemPositioning WRITE setCurrentItemPositioning)
+ Q_PROPERTY(int snapPosition READ snapPosition WRITE setSnapPosition)
+ Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation)
+ Q_PROPERTY(bool wrap READ isWrapEnabled WRITE setWrapEnabled)
+ Q_PROPERTY(int cacheBuffer READ cacheBuffer WRITE setCacheBuffer)
+ Q_PROPERTY(QString sectionExpression READ sectionExpression WRITE setSectionExpression NOTIFY sectionExpressionChanged)
+ Q_PROPERTY(QString currentSection READ currentSection NOTIFY currentSectionChanged)
public:
QFxListView(QFxItem *parent=0);