sw/source/uibase/inc/selglos.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit b1031589b7decf9c371d4ec8df1265dca91ea9e3 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Tue Jan 14 13:17:22 2025 +0100 Commit: Miklos Vajna <vmik...@collabora.com> CommitDate: Tue Jan 14 15:27:24 2025 +0100 The ':' separator without spaces was difficult to read on UI Change-Id: I0886518f254659b6e9c1c242a9331b85e471dd62 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180235 Reviewed-by: Miklos Vajna <vmik...@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> 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