diff options
author | Andras Timar <andras.timar@collabora.com> | 2021-02-21 00:02:08 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2021-02-21 11:21:34 +0100 |
commit | 3f62b71938530fd7e89800fb8fc14634b4fabb56 (patch) | |
tree | 10aac520dce24911014b556e21343f24a4032d7f /comphelper | |
parent | 95c9eaa43daf823bffb3365ec57ff2f15dff77eb (diff) |
fix variable name in SAL_INFO
Change-Id: Ie6da9b1677e60b4e9dfe507e1571cc68610a6cf0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111187
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/lok.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx index 0f665f1be202..77c8c13a7e82 100644 --- a/comphelper/source/misc/lok.cxx +++ b/comphelper/source/misc/lok.cxx @@ -77,7 +77,7 @@ public: { if (maLocaleLanguageTag != rLocaleLanguageTag) { - SAL_INFO("comphelper.lok", "Setting locale from " << maLanguageTag.getBcp47() << " to " << rLocaleLanguageTag.getBcp47()); + SAL_INFO("comphelper.lok", "Setting locale from " << maLocaleLanguageTag.getBcp47() << " to " << rLocaleLanguageTag.getBcp47()); maLocaleLanguageTag = rLocaleLanguageTag; } } |