cui/source/dialogs/cuicharmap.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f0e35cb2fb6f0f595d44c7a7c01ddaf60b19d642
Author: Caolán McNamara <caol...@redhat.com>
Date:   Sun May 29 20:26:12 2016 +0100

    Resolves: tdf#97839 a single character may be more than 1 utf-16 code points
    
    Change-Id: Iba2460bfb9335615796db3f5e233b870a8d63339
    (cherry picked from commit 847cdd8efd0662d61d288a4d944edc30e864d145)

diff --git a/cui/source/dialogs/cuicharmap.cxx 
b/cui/source/dialogs/cuicharmap.cxx
index dc582d6..dff40ae 100644
--- a/cui/source/dialogs/cuicharmap.cxx
+++ b/cui/source/dialogs/cuicharmap.cxx
@@ -518,7 +518,7 @@ IMPL_LINK_NOARG_TYPED(SvxCharacterMap, CharSelectHdl, 
SvxShowCharSet*, void)
             else
                 m_pShowText->SetText( aOUStr );
 
-            m_pShowText->SetSelection( Selection( nPos + 1 ) );
+            m_pShowText->SetSelection(Selection(nPos + aOUStr.getLength()));
         }
 
     }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to