https://bugs.freedesktop.org/show_bug.cgi?id=87863
Julien Nabet <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW CC| |[email protected] Ever confirmed|0 |1 --- Comment #1 from Julien Nabet <[email protected]> --- Code pointers: Ctrl click for Writer is: 142 String STR_LINK_CTRL_CLICK 143 { 144 Text [ en-US ] = "%s-Click to follow link"; 145 }; http://opengrok.libreoffice.org/xref/core/sw/source/uibase/utlui/initui.src#142 which gives: 212 aLinkCtrlClick(SW_RESSTR(STR_LINK_CTRL_CLICK)), http://opengrok.libreoffice.org/xref/core/sw/source/uibase/utlui/initui.cxx#212 then: 221 vcl::KeyCode aCode( KEY_SPACE ); 222 vcl::KeyCode aModifiedCode( KEY_SPACE, KEY_MOD1 ); 223 OUString aModStr( aModifiedCode.GetName() ); 224 aModStr = aModStr.replaceFirst(aCode.GetName(), OUString()); 225 aModStr = aModStr.replaceAll("+", OUString()); 226 aLinkCtrlClick = aLinkCtrlClick.replaceAll("%s", aModStr); http://opengrok.libreoffice.org/xref/core/sw/source/uibase/utlui/initui.cxx#221 So I think the work should begin here: 2056 String STR_CTRLCLICKHYPERLINK 2057 { 2058 Text [ en-US ] = "ctrl+click to open hyperlink:"; 2059 }; http://opengrok.libreoffice.org/xref/core/sc/source/ui/src/globstr.src#2058 -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
