forked from qt-creator/qt-creator
QmlDesigner: Fix warning about missing override
Change-Id: Ie1bdb49a23d5b1b5cf7508271d4096453335b11e Reviewed-by: Tim Jenssen <tim.jenssen@theqtcompany.com>
This commit is contained in:
committed by
Tim Jenssen
parent
e5f3c55506
commit
7ba22d38d1
@@ -98,7 +98,7 @@ public:
|
||||
const QStyleOptionViewItem &option,
|
||||
const QModelIndex &index) const override;
|
||||
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
||||
|
||||
private slots:
|
||||
void emitCommitData(const QString &text);
|
||||
|
||||
@@ -99,7 +99,7 @@ public:
|
||||
const QStyleOptionViewItem &option,
|
||||
const QModelIndex &index) const override;
|
||||
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
||||
|
||||
private slots:
|
||||
void emitCommitData(const QString &text);
|
||||
|
||||
@@ -112,7 +112,7 @@ public:
|
||||
const QStyleOptionViewItem &option,
|
||||
const QModelIndex &index) const override;
|
||||
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
||||
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
||||
|
||||
private slots:
|
||||
void emitCommitData(const QString &text);
|
||||
|
||||
Reference in New Issue
Block a user