aboutsummaryrefslogtreecommitdiffstats
path: root/src/controls
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls')
-rw-r--r--src/controls/qquickstackview_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/qquickstackview_p.cpp b/src/controls/qquickstackview_p.cpp
index f887539f..fc152a36 100644
--- a/src/controls/qquickstackview_p.cpp
+++ b/src/controls/qquickstackview_p.cpp
@@ -314,7 +314,7 @@ QQuickStackElement *QQuickStackViewPrivate::findElement(const QV4::Value &value)
QQuickStackElement *QQuickStackViewPrivate::createElement(const QV4::Value &value)
{
Q_Q(QQuickStackView);
- if (QV4::String *s = value.asString())
+ if (const QV4::String *s = value.as<QV4::String>())
return QQuickStackElement::fromString(s->toQString(), q);
if (const QV4::QObjectWrapper *o = value.as<QV4::QObjectWrapper>())
return QQuickStackElement::fromObject(o->object(), q);