aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4runtime_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-10-09 09:30:12 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2016-04-11 12:27:33 +0000
commit0b1030ae67f7f7446197c50d1adfd29bb0d9442c (patch)
tree4fd7e8ed098c1ab4f104d089a65300150d5815c5 /src/qml/jsruntime/qv4runtime_p.h
parent38b37b55d266e0a6c661288b5b6957472f31b536 (diff)
Convert 3rd batch of runtime methods
Change-Id: Idc277fd95d2b397a573631026549da44801109f4 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4runtime_p.h')
-rw-r--r--src/qml/jsruntime/qv4runtime_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4runtime_p.h b/src/qml/jsruntime/qv4runtime_p.h
index 0efee6a043..853a795b92 100644
--- a/src/qml/jsruntime/qv4runtime_p.h
+++ b/src/qml/jsruntime/qv4runtime_p.h
@@ -412,7 +412,7 @@ inline Bool Runtime::compareStrictNotEqual(const Value &left, const Value &right
return ! RuntimeHelpers::strictEqual(left, right);
}
-inline Bool Runtime::toBoolean(const Value &value)
+inline Bool Runtime::method_toBoolean(const Value &value)
{
return value.toBoolean();
}