Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class StoredVariable;
class StoredVariableWrapper : public VariableWrapper
{
Q_OBJECT
Q_PROPERTY(QJSValue value READ value WRITE setValue OVERRIDE)
Q_PROPERTY(QJSValue value READ value WRITE setValue)

public:
StoredVariableWrapper(StoredVariable &variable, ScriptingEngine &engine);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class VariableWrapper : public QObject
{
Q_OBJECT

Q_PROPERTY(QJSValue value READ value VIRTUAL)
Q_PROPERTY(QJSValue value READ value)
Q_PROPERTY(VariableType type READ type)

public:
Expand Down