aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/cpaster/cgi.cpp
diff options
context:
space:
mode:
authorOswald Buddenhagen <[email protected]>2010-01-29 21:33:57 +0100
committerOswald Buddenhagen <[email protected]>2010-01-29 21:33:57 +0100
commita6ca348636dd92ab1445cff2286b3293163f5cea (patch)
treea7eba2d2bf7928ebff553f300dd4bacd824bce75 /src/shared/cpaster/cgi.cpp
parent07da7ccfdf6e991c282dafdc9b4337db81a1a054 (diff)
remove trailing whitespace
doing it in 1.3 as well to avoid possible later conflicts
Diffstat (limited to 'src/shared/cpaster/cgi.cpp')
-rw-r--r--src/shared/cpaster/cgi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cpaster/cgi.cpp b/src/shared/cpaster/cgi.cpp
index a6c37904ff1..91ef6b7281c 100644
--- a/src/shared/cpaster/cgi.cpp
+++ b/src/shared/cpaster/cgi.cpp
@@ -39,7 +39,7 @@ QString CGI::encodeURL(const QString &rawText)
QByteArray utf = rawText.toUtf8();
QString enc;
enc.reserve(utf.length()); // Make sure we at least have space for a normal US-ASCII URL
-
+
QByteArray::const_iterator it = utf.constBegin();
while (it != utf.constEnd()) {
char ch = *it;