diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-07-17 15:55:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-07-17 18:22:58 +0200 |
commit | 19b3a353662c547b9e1a445c1bc71cf3bc107250 (patch) | |
tree | abc1a5b3d79ea84ce1101153d2429199ae9594d0 /cui | |
parent | 1d3de59ac2d12e42e12c9642bd252236a80b096b (diff) |
Related: tdf#118681 use a case insensitive compare for hex digits
Change-Id: I7b177d2772a86cada37c20056794bc1d8ab50991
Reviewed-on: https://gerrit.libreoffice.org/57563
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/cuicharmap.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/dialogs/cuicharmap.cxx b/cui/source/dialogs/cuicharmap.cxx index 71c1360f4f7d..13e88e9df86d 100644 --- a/cui/source/dialogs/cuicharmap.cxx +++ b/cui/source/dialogs/cuicharmap.cxx @@ -976,8 +976,8 @@ IMPL_LINK_NOARG(SvxCharacterMap, CharHighlightHdl, SvxShowCharSet*, void) setCharName(cChar); // Update the hex and decimal codes only if necessary - if (m_xHexCodeText->get_text() != aHexText) - m_xHexCodeText->set_text( aHexText ); + if (!m_xHexCodeText->get_text().equalsIgnoreAsciiCase(aHexText)) + m_xHexCodeText->set_text(aHexText); if (m_xDecimalCodeText->get_text() != aDecimalText) m_xDecimalCodeText->set_text( aDecimalText ); @@ -1019,7 +1019,7 @@ IMPL_LINK_NOARG(SvxCharacterMap, SearchCharHighlightHdl, SvxShowCharSet*, void) setCharName(cChar); // Update the hex and decimal codes only if necessary - if (m_xHexCodeText->get_text() != aHexText) + if (!m_xHexCodeText->get_text().equalsIgnoreAsciiCase(aHexText)) m_xHexCodeText->set_text(aHexText); if (m_xDecimalCodeText->get_text() != aDecimalText) m_xDecimalCodeText->set_text( aDecimalText ); |