forked from qt-creator/qt-creator
libs/qmljs: s/Q_DECL_OVERRIDE/override/g
Change-Id: I86a5b56ee8587240a03551c0d23edcbd5230494b Reviewed-by: Marco Benelli <marco.benelli@theqtcompany.com> Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -188,7 +188,7 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
bool processProperty(const QString &name, const Value *value, const PropertyInfo &pInfo) Q_DECL_OVERRIDE
|
||||
bool processProperty(const QString &name, const Value *value, const PropertyInfo &pInfo) override
|
||||
{
|
||||
d.dumpNewline();
|
||||
d.dump(name);
|
||||
@@ -201,19 +201,19 @@ public:
|
||||
d.closeContext("");
|
||||
return true;
|
||||
}
|
||||
bool processEnumerator(const QString &name, const Value *value) Q_DECL_OVERRIDE
|
||||
bool processEnumerator(const QString &name, const Value *value) override
|
||||
{
|
||||
return dump(name, value);
|
||||
}
|
||||
bool processSignal(const QString &name, const Value *value) Q_DECL_OVERRIDE
|
||||
bool processSignal(const QString &name, const Value *value) override
|
||||
{
|
||||
return dump(name, value);
|
||||
}
|
||||
bool processSlot(const QString &name, const Value *value) Q_DECL_OVERRIDE
|
||||
bool processSlot(const QString &name, const Value *value) override
|
||||
{
|
||||
return dump(name, value);
|
||||
}
|
||||
bool processGeneratedSlot(const QString &name, const Value *value) Q_DECL_OVERRIDE
|
||||
bool processGeneratedSlot(const QString &name, const Value *value) override
|
||||
{
|
||||
return dump(name, value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user