aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4value_inl_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-02-13 12:19:04 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-21 13:01:41 +0000
commitfc5a11aadcf7a12ee5a1f91f567daefce28ada60 (patch)
tree4beeb467cddebfba77cc5bebd7d996a7d260911e /src/qml/jsruntime/qv4value_inl_p.h
parent99b15c8f47c6ce5f7d63e19b2e2429536c254064 (diff)
Get rid of asManaged()
Change-Id: I853417fdf1cc339f7d43a006c20e1626b6bfb288 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4value_inl_p.h')
-rw-r--r--src/qml/jsruntime/qv4value_inl_p.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/qml/jsruntime/qv4value_inl_p.h b/src/qml/jsruntime/qv4value_inl_p.h
index 3d25d8a070..ae5949d886 100644
--- a/src/qml/jsruntime/qv4value_inl_p.h
+++ b/src/qml/jsruntime/qv4value_inl_p.h
@@ -63,18 +63,11 @@ inline bool Value::isPrimitive() const
return !isObject();
}
-inline String *Value::asString() const
-{
- if (isString())
- return stringValue();
- return 0;
-}
-
-inline void Value::mark(ExecutionEngine *e) const
+inline void Value::mark(ExecutionEngine *e)
{
if (!val)
return;
- Managed *m = asManaged();
+ Managed *m = as<Managed>();
if (m)
m->mark(e);
}