diff options
author | Andras Timar <atimar@suse.com> | 2013-05-07 21:01:30 +0200 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-05-07 21:09:36 +0200 |
commit | 34f275fe4e19877fbb12d483d7edb5adaef49bc2 (patch) | |
tree | 4e79b30062ede1cdb63ff2f66dcd0e475dc8d932 /sfx2/source/appl/sfxhelp.cxx | |
parent | 25efffbaff6b25074a2b5d4cc97ecfb73fa9eaf8 (diff) |
fdo#64211 replace "%2F" to "/" in online (wiki) help URLs
It is not possible to create wiki pages with URLs that have %2F in
them. Help URLs contain %2F, when invoked from dialogs that are
based on .ui files, it seems this is the new HID syntax.
For example for Zoom dialog LibreOffice used to call
http://help.libreoffice.org/simpress/cui%2Fui%2Fzoomdialog%2Fzoomsb
and it did not work. Now it calls
http://help.libreoffice.org/simpress/cui/ui/zoomdialog/zoomsb
and it works.
Change-Id: I163cf8ec3b69f31eadbbd9085d2180839fe91e07
Diffstat (limited to 'sfx2/source/appl/sfxhelp.cxx')
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index fad70466e5fe..0d35063ecba8 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -649,6 +649,7 @@ static bool impl_showOnlineHelp( const OUString& rURL ) OUString aHelpLink( "http://help.libreoffice.org/" ); aHelpLink += rURL.copy( aInternal.getLength() ); + aHelpLink = aHelpLink.replaceAll("%2F","/"); try { Reference< XSystemShellExecute > xSystemShell( |