aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/parser/qmljsengine_p.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/parser/qmljsengine_p.cpp')
-rw-r--r--src/lib/corelib/parser/qmljsengine_p.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/parser/qmljsengine_p.cpp b/src/lib/corelib/parser/qmljsengine_p.cpp
index 92ac6452a..11bf8a3f3 100644
--- a/src/lib/corelib/parser/qmljsengine_p.cpp
+++ b/src/lib/corelib/parser/qmljsengine_p.cpp
@@ -149,7 +149,7 @@ QStringRef Engine::newStringRef(const QString &text)
{
const int pos = _extraCode.length();
_extraCode += text;
- return _extraCode.midRef(pos, text.length());
+ return QStringRef(&_extraCode).mid(pos, text.length());
}
QStringRef Engine::newStringRef(const QChar *chars, int size)