aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-11 13:10:42 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-18 13:13:16 +0200
commit826550af450b39f47a3c00ec316acf1e317f12c6 (patch)
tree58fcb1dbb91ea981a6a1cfde61a92b4d4d34eff9 /src/qml/jsruntime/qv4context_p.h
parentd642438b7641ea2ea5416b59327c8f3baf531aa7 (diff)
Adjust return values to use ReturnedValue
Change-Id: I03822d360ad90cc659da66252439472ecb1a52bb Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/jsruntime/qv4context_p.h')
-rw-r--r--src/qml/jsruntime/qv4context_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h
index fe10e33c5e..8ebffea981 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -142,9 +142,9 @@ struct Q_QML_EXPORT ExecutionContext
void Q_NORETURN throwUnimplemented(const QString &message);
void setProperty(String *name, const Value &value);
- Value getProperty(String *name);
- Value getPropertyNoThrow(String *name);
- Value getPropertyAndBase(String *name, Object **base);
+ ReturnedValue getProperty(String *name);
+ ReturnedValue getPropertyNoThrow(String *name);
+ ReturnedValue getPropertyAndBase(String *name, Object **base);
bool deleteProperty(String *name);
inline Value argument(unsigned int index = 0);