summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qurl.cpp
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-07-01 17:53:49 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-04 04:47:59 +0200
commit6aa15690ffba0772ffeebf3d5199d94fa0d72bff (patch)
tree8ee6abe3ffe77e9a87d4793e9f356b3c2aad6987 /src/corelib/io/qurl.cpp
parentd5f05557ba9896f626fd20b82eb8c234e0b7bedc (diff)
QUrl: remove temporary code
The setting of EncodeDelimiters was temporary until we could remove the old qt_urlRecode "decode all" mode (not the FullyDecoded mode, that stays). Change-Id: Ic07ebe4bb7fc72351b65bfb4619b71206cc8c0cd Reviewed-by: David Faure (KDE) <faure@kde.org>
Diffstat (limited to 'src/corelib/io/qurl.cpp')
-rw-r--r--src/corelib/io/qurl.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/corelib/io/qurl.cpp b/src/corelib/io/qurl.cpp
index 7aa944c634..ac099591ba 100644
--- a/src/corelib/io/qurl.cpp
+++ b/src/corelib/io/qurl.cpp
@@ -774,8 +774,6 @@ recodeFromUser(const QString &input, const ushort *actions, int from, int to)
static inline void appendToUser(QString &appendTo, const QString &value, QUrl::FormattingOptions options,
const ushort *actions)
{
- options |= QUrl::EncodeDelimiters;
-
if (options == QUrl::PrettyDecoded) {
appendTo += value;
return;
@@ -833,7 +831,6 @@ inline void QUrlPrivate::appendUserInfo(QString &appendTo, QUrl::FormattingOptio
}
}
- options |= QUrl::EncodeDelimiters;
if (!qt_urlRecode(appendTo, userName.constData(), userName.constEnd(), options, userNameActions))
appendTo += userName;
if (options & QUrl::RemovePassword || !hasPassword()) {