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:
Tobias Hunger
2015-06-03 15:34:13 +02:00
parent e97f389441
commit 9da6ac9022
11 changed files with 266 additions and 266 deletions

View File

@@ -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);
}