diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-10-14 17:30:21 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-10-14 17:30:21 +0200 |
commit | 1557a5f87b7fbb0bbfe55f154291cb403ebfa2a1 (patch) | |
tree | 1aab6c474392fc0dc6435b329af089aa3a58f200 /src/useragent | |
parent | Sanitizing strings... (diff) | |
download | rekonq-1557a5f87b7fbb0bbfe55f154291cb403ebfa2a1.tar.xz |
EBN Krazy fixes
It seems now we are really ready for the stable release...
Diffstat (limited to 'src/useragent')
-rw-r--r-- | src/useragent/useragentinfo.cpp | 4 |
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; } |