summaryrefslogtreecommitdiff
path: root/src/useragent
diff options
context:
space:
mode:
authorCedric Bellegarde <gnumdk@gmail.com>2011-10-17 08:34:17 +0200
committerCedric Bellegarde <gnumdk@gmail.com>2011-10-17 08:34:17 +0200
commit2b2adbcfcb6ed81edb2e4646735285935e61c624 (patch)
tree52f983051b7c81e06c00ab20d64471c429320b1d /src/useragent
parentUpdate menu bar tools (useful for people using plasma-menubar/oxygen-appmenu) (diff)
parentrekonq 0.8.50: First development version on the road to 0.9... (diff)
downloadrekonq-2b2adbcfcb6ed81edb2e4646735285935e61c624.tar.xz
Merge branch 'master' of git.kde.org:rekonq
Diffstat (limited to 'src/useragent')
-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;
}