diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-04-21 14:46:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-22 10:57:02 +0200 |
commit | 78df8f9dc1d28f5390aedb634b07817a22ce989c (patch) | |
tree | 40e89603c50b4c4779402a60c70423c88b85c61e /cui | |
parent | 32dda25037c01567cf97115fe4ee8ab06489d214 (diff) |
Resolves: tdf#141721 text from 1st col not clipped if 2nd col is empty
Change-Id: I07257c59c20c3a2aeb789bbb370955e9e70226ca
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114433
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optaboutconfig.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optaboutconfig.cxx b/cui/source/options/optaboutconfig.cxx index 4c8d3d8118a4..6a15fb3a1411 100644 --- a/cui/source/options/optaboutconfig.cxx +++ b/cui/source/options/optaboutconfig.cxx @@ -290,7 +290,7 @@ void CuiAboutConfigTabPage::FillItems(const Reference< XNameAccess >& xNameAcces OUString sId(OUString::number(reinterpret_cast<sal_Int64>(m_vectorUserData.back().get()))); m_xPrefBox->insert(pParentEntry, -1, &item, &sId, nullptr, nullptr, true, m_xScratchIter.get()); - //It is needed, without this the selection line will be truncated. + // Necessary, without this the selection line will be truncated. m_xPrefBox->set_text(*m_xScratchIter, "", 1); m_xPrefBox->set_text(*m_xScratchIter, "", 2); m_xPrefBox->set_text(*m_xScratchIter, "", 3); |