forked from qt-creator/qt-creator
glsleditor: s/Q_DECL_OVERRIDE/override/g
Change-Id: I818ad4a11c70a455462e91478b8ac955ad634530 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -177,10 +177,10 @@ public:
|
||||
, m_currentArg(-1)
|
||||
{}
|
||||
|
||||
void reset() Q_DECL_OVERRIDE {}
|
||||
int size() const Q_DECL_OVERRIDE { return m_items.size(); }
|
||||
QString text(int index) const Q_DECL_OVERRIDE;
|
||||
int activeArgument(const QString &prefix) const Q_DECL_OVERRIDE;
|
||||
void reset() override {}
|
||||
int size() const override { return m_items.size(); }
|
||||
QString text(int index) const override;
|
||||
int activeArgument(const QString &prefix) const override;
|
||||
|
||||
private:
|
||||
QVector<GLSL::Function *> m_items;
|
||||
|
||||
Reference in New Issue
Block a user