aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v8/qv8contextwrapper_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/v8/qv8contextwrapper_p.h')
-rw-r--r--src/qml/qml/v8/qv8contextwrapper_p.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/qml/qml/v8/qv8contextwrapper_p.h b/src/qml/qml/v8/qv8contextwrapper_p.h
index 3e14a019a7..8a0fbae891 100644
--- a/src/qml/qml/v8/qv8contextwrapper_p.h
+++ b/src/qml/qml/v8/qv8contextwrapper_p.h
@@ -72,8 +72,8 @@ public:
void init(QV8Engine *);
void destroy();
- v8::Local<v8::Object> qmlScope(QQmlContextData *ctxt, QObject *scope);
- v8::Local<v8::Object> urlScope(const QUrl &);
+ v8::Handle<v8::Object> qmlScope(QQmlContextData *ctxt, QObject *scope);
+ v8::Handle<v8::Object> urlScope(const QUrl &);
void setReadOnly(v8::Handle<v8::Object>, bool);
@@ -88,15 +88,15 @@ public:
void takeContextOwnership(v8::Handle<v8::Object> qmlglobal);
private:
- static v8::Handle<v8::Value> NullGetter(v8::Local<v8::String> property,
+ static v8::Handle<v8::Value> NullGetter(v8::Handle<v8::String> property,
const v8::AccessorInfo &info);
- static v8::Handle<v8::Value> NullSetter(v8::Local<v8::String> property,
- v8::Local<v8::Value> value,
+ static v8::Handle<v8::Value> NullSetter(v8::Handle<v8::String> property,
+ v8::Handle<v8::Value> value,
const v8::AccessorInfo &info);
- static v8::Handle<v8::Value> Getter(v8::Local<v8::String> property,
+ static v8::Handle<v8::Value> Getter(v8::Handle<v8::String> property,
const v8::AccessorInfo &info);
- static v8::Handle<v8::Value> Setter(v8::Local<v8::String> property,
- v8::Local<v8::Value> value,
+ static v8::Handle<v8::Value> Setter(v8::Handle<v8::String> property,
+ v8::Handle<v8::Value> value,
const v8::AccessorInfo &info);
QV8Engine *m_engine;