aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/winextras/qquickjumplist_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/winextras/qquickjumplist_p.h')
-rw-r--r--src/imports/winextras/qquickjumplist_p.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/imports/winextras/qquickjumplist_p.h b/src/imports/winextras/qquickjumplist_p.h
index 8efb2bc..c686294 100644
--- a/src/imports/winextras/qquickjumplist_p.h
+++ b/src/imports/winextras/qquickjumplist_p.h
@@ -72,7 +72,7 @@ class QQuickJumpList : public QObject, public QQmlParserStatus
Q_INTERFACES(QQmlParserStatus)
public:
- explicit QQuickJumpList(QObject *parent = 0);
+ explicit QQuickJumpList(QObject *parent = nullptr);
~QQuickJumpList();
QQuickJumpListCategory *recent() const;
@@ -84,8 +84,8 @@ public:
QQmlListProperty<QObject> data();
QQmlListProperty<QQuickJumpListCategory> categories();
- void classBegin();
- void componentComplete();
+ void classBegin() override;
+ void componentComplete() override;
Q_SIGNALS:
void tasksChanged();
@@ -99,9 +99,9 @@ private:
static int categories_count(QQmlListProperty<QQuickJumpListCategory> *property);
static QQuickJumpListCategory *categories_at(QQmlListProperty<QQuickJumpListCategory> *property, int index);
- QQuickJumpListCategory *m_recent;
- QQuickJumpListCategory *m_frequent;
- QQuickJumpListCategory *m_tasks;
+ QQuickJumpListCategory *m_recent = nullptr;
+ QQuickJumpListCategory *m_frequent = nullptr;
+ QQuickJumpListCategory *m_tasks = nullptr;
QList<QQuickJumpListCategory *> m_categories;
};