aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v8/qv8sequencewrapper_p_p.h
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2012-04-20 09:27:01 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-20 02:26:23 +0200
commit360f0d00088cc84791e7a197b20a325bfdac9eb3 (patch)
tree88b38436920dca8ec5486c1cdc852dff7f8b0fd7 /src/qml/qml/v8/qv8sequencewrapper_p_p.h
parentb93e463465f5c4241d2dae9aaaa198684e1199fb (diff)
Use QUrl constructor directly.
setEncodedUrl is deprecated, and no longer required as the new QUrl makes this behavior default. This is a partial revert of 3aa53b8bc383ebcdf8dc922b2670170ec012949f. Change-Id: I14f29cbe2a2e2cd9c41f7afc92b1cb66b53996bb Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com>
Diffstat (limited to 'src/qml/qml/v8/qv8sequencewrapper_p_p.h')
-rw-r--r--src/qml/qml/v8/qv8sequencewrapper_p_p.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/qml/qml/v8/qv8sequencewrapper_p_p.h b/src/qml/qml/v8/qv8sequencewrapper_p_p.h
index eebc40eeed..4745b7e8a4 100644
--- a/src/qml/qml/v8/qv8sequencewrapper_p_p.h
+++ b/src/qml/qml/v8/qv8sequencewrapper_p_p.h
@@ -200,9 +200,7 @@ static QString convertQStringToString(QV8Engine *, const QString &v)
static QUrl convertV8ValueToUrl(QV8Engine *e, v8::Handle<v8::Value> v)
{
- QUrl u;
- u.setEncodedUrl(e->toString(v->ToString()).toUtf8(), QUrl::TolerantMode);
- return u;
+ return QUrl(e->toString(v->ToString()));
}
static v8::Handle<v8::Value> convertUrlToV8Value(QV8Engine *e, const QUrl &v)