From 593df89a655d19e009dd067e1b6e5508251f695d Mon Sep 17 00:00:00 2001 From: Andras Timar Date: Tue, 14 Jan 2025 13:17:22 +0100 Subject: [PATCH] The ':' separator without spaces was difficult to read on UI Change-Id: I0886518f254659b6e9c1c242a9331b85e471dd62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180233 Tested-by: Jenkins Reviewed-by: Andras Timar --- sw/source/uibase/inc/selglos.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/uibase/inc/selglos.hxx b/sw/source/uibase/inc/selglos.hxx index fd5de379631a..4273d43e12d8 100644 --- a/sw/source/uibase/inc/selglos.hxx +++ b/sw/source/uibase/inc/selglos.hxx @@ -37,7 +37,7 @@ public: void InsertGlos(std::u16string_view rRegion, std::u16string_view rGlosName) { - const OUString aTmp = OUString::Concat(rRegion) + ":" + rGlosName; + const OUString aTmp = OUString::Concat(rRegion) + " - " + rGlosName; m_xGlosBox->append_text(aTmp); } sal_Int32 GetSelectedIdx() const