summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Hallot <olivier.hallot@libreoffice.org>2017-08-02 01:06:01 -0300
committerOlivier Hallot <olivier.hallot@edx.srv.br>2017-08-02 14:55:36 +0200
commit94bbc7afdd90a2551a8efe9e215f8d4800358032 (patch)
tree1e2138968a8b25ba1c8afbbfd9cf8ac8824bf4e6
parent3dcf6dfceee58360501396390d78c006351aef47 (diff)
tdf#97745 rename index,html to LOHelp.html
Index.html is not a good name on a website that is called from LibreOffice. Use LOHelp.html instead to handle special case of URLs comming from LibreOffice help call. Change-Id: I0f33e56c0e6eb81deebeaedf6e24b9c3c791a68c Reviewed-on: https://gerrit.libreoffice.org/40662 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Olivier Hallot <olivier.hallot@edx.srv.br> Tested-by: Olivier Hallot <olivier.hallot@edx.srv.br>
-rw-r--r--sfx2/source/appl/sfxhelp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx
index 4df7cbd8d7bd..fa323ddce065 100644
--- a/sfx2/source/appl/sfxhelp.cxx
+++ b/sfx2/source/appl/sfxhelp.cxx
@@ -530,7 +530,7 @@ static bool impl_showOnlineHelp( const OUString& rURL )
if ( rURL.getLength() <= aInternal.getLength() || !rURL.startsWith(aInternal) )
return false;
- OUString aHelpLink( "http://helponline.libreoffice.org/index.html?" );
+ OUString aHelpLink( "http://helponline.libreoffice.org/LOHelp.html?" );
aHelpLink += rURL.copy( aInternal.getLength() );
aHelpLink = aHelpLink.replaceAll("%2F","/");