From 3f9367cb32533b691cb8c761213f21a524e3d1cb Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Mon, 22 May 2017 08:34:00 +0200 Subject: Fix compilation of QtScxml QtScxml was using internal API in v4, that has changed. Restore the old function signature until all it's uses have been cleaned up. Task-number: QTBUG-60938 Change-Id: Ie40c09da9df9e5684972669cd9a511a868b920a4 Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4string_p.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/qml/jsruntime/qv4string_p.h b/src/qml/jsruntime/qv4string_p.h index f5311ae5d4..d9625e3f4e 100644 --- a/src/qml/jsruntime/qv4string_p.h +++ b/src/qml/jsruntime/qv4string_p.h @@ -175,6 +175,10 @@ struct Q_QML_PRIVATE_EXPORT String : public Managed { } uint toUInt(bool *ok) const; + Q_DECL_DEPRECATED void makeIdentifier(ExecutionEngine *) { + makeIdentifier(); + } + void makeIdentifier() const { if (d()->identifier) return; -- cgit v1.2.3