summaryrefslogtreecommitdiff
path: root/src/useragent/useragentinfo.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-10-14 17:30:21 +0200
committerAndrea Diamantini <adjam7@gmail.com>2011-10-14 17:30:21 +0200
commit1557a5f87b7fbb0bbfe55f154291cb403ebfa2a1 (patch)
tree1aab6c474392fc0dc6435b329af089aa3a58f200 /src/useragent/useragentinfo.cpp
parentSanitizing strings... (diff)
downloadrekonq-1557a5f87b7fbb0bbfe55f154291cb403ebfa2a1.tar.xz
EBN Krazy fixes
It seems now we are really ready for the stable release...
Diffstat (limited to 'src/useragent/useragentinfo.cpp')
-rw-r--r--src/useragent/useragentinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/useragent/useragentinfo.cpp b/src/useragent/useragentinfo.cpp
index d7defd59..0829a7e1 100644
--- a/src/useragent/useragentinfo.cpp
+++ b/src/useragent/useragentinfo.cpp
@@ -137,10 +137,10 @@ QString UserAgentInfo::userAgentDescription(int i)
if (!systemName.isEmpty() && !systemRelease.isEmpty())
{
// FIXME: needs a proper translation after stable release
- systemSummary = " " % QL1S("on") % " " % systemName % " " % systemRelease;
+ systemSummary = QL1C(' ') % QL1S("on") % QL1C(' ') % systemName % QL1C(' ') % systemRelease;
}
- return userAgentName(i) % " " % userAgentVersion(i) % systemSummary;
+ return userAgentName(i) % QL1C(' ') % userAgentVersion(i) % systemSummary;
}