diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-09-19 13:37:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-09-19 13:37:02 +0300 |
commit | 31a573d3498efbbdb75af94eb9197cb29e1526b3 (patch) | |
tree | 8475a4f364811ab5fa7994b3137107fa167eced9 /cui | |
parent | 3a9d07e4108740303179c89db807382d3b8cb225 (diff) |
For a sandboxed OS X LOfC, use a more specific URL
Change-Id: Ibe640c9557b987622a843d7e219f7fcd42f3b73a
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/about.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 1591f4e72c7c..059f282fab1c 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -109,6 +109,10 @@ IMPL_LINK( AboutDialog, HandleClick, PushButton*, pButton ) else if ( pDialogButton == (AboutDialogButton*)WEBSITE_BUTTON ) { sURL = officecfg::Office::Common::Help::StartCenter::InfoURL::get(); +#if defined MACOSX && HAVE_FEATURE_MACOSX_SANDBOX + sURL += "lofc-mac-app-store/"; +#endif + localizeWebserviceURI(sURL); } |