https://bugs.documentfoundation.org/show_bug.cgi?id=141209
Miklos Vajna <[email protected]> changed:
What |Removed |Added
----------------------------------------------------------------------------
Ever confirmed|0 |1
Status|UNCONFIRMED |NEW
CC| |[email protected]
--- Comment #1 from Miklos Vajna <[email protected]> ---
Patch to insert the problematic string on F12 into Writer in debug mode:
diff --git a/sw/source/uibase/docvw/edtwin.cxx
b/sw/source/uibase/docvw/edtwin.cxx
index 93560ec91f3b..6dee14bc7668 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -1458,6 +1458,13 @@ void SwEditWin::KeyInput(const KeyEvent &rKEvt)
if ( getenv("SW_DEBUG") && rKEvt.GetKeyCode().GetCode() == KEY_F12 )
{
+ // xéx
+ // std::vector<sal_Unicode> aChars = {0x0078, 0x00e9, 0x0078, 0x0000};
+ // x, low surrogate, x
+ std::vector<sal_Unicode> aChars = {0x0078, 0xdf09, 0x0078, 0x0000};
+ rSh.Insert2(OUString(aChars.data()));
+ return;
+
if( rKEvt.GetKeyCode().IsShift())
{
GetView().GetDocShell()->GetDoc()->dumpAsXml();
That being said, I can reproduce this. CC Stephan (just FYI)
--
You are receiving this mail because:
You are the assignee for the bug._______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs