mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-14 00:47:17 +02:00
Fix override warnings
This commit is contained in:
parent
3c80411bf1
commit
13e22d4931
2 changed files with 2 additions and 2 deletions
|
@ -55,7 +55,7 @@ public:
|
|||
const ScriptValue::PropertyFlags& flags = ScriptValue::KeepExistingFlags) override;
|
||||
virtual void setPrototype(const ScriptValue& prototype) override;
|
||||
virtual bool strictlyEquals(const ScriptValue& other) const override;
|
||||
virtual inline QList<QString> getPropertyNames() const;
|
||||
virtual inline QList<QString> getPropertyNames() const override;
|
||||
|
||||
virtual bool toBool() const override;
|
||||
virtual qint32 toInt32() const override;
|
||||
|
|
|
@ -69,7 +69,7 @@ public: // ScriptValue implementation
|
|||
const ScriptValue::PropertyFlags& flags = ScriptValue::KeepExistingFlags) override;
|
||||
virtual void setPrototype(const ScriptValue& prototype) override;
|
||||
virtual bool strictlyEquals(const ScriptValue& other) const override;
|
||||
virtual QList<QString> getPropertyNames() const;
|
||||
virtual QList<QString> getPropertyNames() const override;
|
||||
|
||||
virtual bool equals(const ScriptValue& other) const override;
|
||||
virtual bool isArray() const override;
|
||||
|
|
Loading…
Reference in a new issue