diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-31 19:29:31 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-09-01 12:29:39 +0200 |
commit | ee8f0a10661b747db9a82b9acba4de343a5a51d6 (patch) | |
tree | ce9b6b2cf18caa73b8500245d558ff2ac484074d /shell | |
parent | 0940229305247b4e64e8c85c9734020c9808a6ec (diff) |
Fix '..'
To complete this:
https://gerrit.libreoffice.org/#/c/78312/
This is a massive replace for
".." instead of "..." between words.
It passed "make check" on Linux.
Change-Id: I144d8061fca9f545c762941551e59dffdd3650e8
Reviewed-on: https://gerrit.libreoffice.org/78357
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/localebe/localebackend.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/backends/localebe/localebackend.cxx b/shell/source/backends/localebe/localebackend.cxx index 191c5940980e..263b039e9219 100644 --- a/shell/source/backends/localebe/localebackend.cxx +++ b/shell/source/backends/localebe/localebackend.cxx @@ -205,7 +205,7 @@ static css::beans::Optional<css::uno::Any> ImplGetLocale(char const * category) return {false, {}}; } - // This is a tad awkward.. but the easiest way to obtain what we're + // This is a tad awkward... but the easiest way to obtain what we're // actually interested in. For example this also converts // "ca_ES.UTF-8@valencia" to "ca-ES-valencia". const OString aLocaleStr(locale); |