aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4value_inl_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-02-13 11:45:03 +0100
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-04-17 17:29:16 +0000
commit5f1220a18f27a1d4409230378996cb4ae9ef4c54 (patch)
treeeeb32b8f557ac266beb2f43faea773583a86c07e /src/qml/jsruntime/qv4value_inl_p.h
parent0ca50c64b087f4affafda18c6a3ba25d734d4888 (diff)
Get rid of asStringObject()
Change-Id: Iad3afd00d2fdbd04efa4f3b841f11269ab496826 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.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/qml/jsruntime/qv4value_inl_p.h b/src/qml/jsruntime/qv4value_inl_p.h
index 5b08a2c8f3..dea510e625 100644
--- a/src/qml/jsruntime/qv4value_inl_p.h
+++ b/src/qml/jsruntime/qv4value_inl_p.h
@@ -253,11 +253,6 @@ inline NumberObject *Value::asNumberObject() const
return isObject() ? managed()->asNumberObject() : 0;
}
-inline StringObject *Value::asStringObject() const
-{
- return isObject() ? managed()->asStringObject() : 0;
-}
-
template<>
inline ReturnedValue value_convert<String>(ExecutionEngine *e, const Value &v)
{