diff options
author | Thorsten Behrens <tbehrens@novell.com> | 2010-10-07 12:27:45 +0200 |
---|---|---|
committer | Thorsten Behrens <tbehrens@novell.com> | 2010-10-07 12:35:59 +0200 |
commit | 525ec67a47f2a4e66cb7713826e1b02561bbd859 (patch) | |
tree | 3530a57b45c87fe22f7e756c753ba3ed9bccfa97 | |
parent | 25a10665e1fcf74f6bbf01b8037c9ce573536d0b (diff) |
Webservice URLs now point to documentfoundation
Changed places referencing OOo webservices to refer to
*.documentfoundation.org instead. Also, append coutry string to URL.
-rw-r--r-- | dbaccess/source/ui/dlg/ExtensionNotPresent.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dbaccess/source/ui/dlg/ExtensionNotPresent.cxx b/dbaccess/source/ui/dlg/ExtensionNotPresent.cxx index 472263ba0..6f5bdda20 100644 --- a/dbaccess/source/ui/dlg/ExtensionNotPresent.cxx +++ b/dbaccess/source/ui/dlg/ExtensionNotPresent.cxx @@ -44,6 +44,7 @@ #include <unotools/syslocale.hxx> #include <svx/globlmn.hrc> #include <svx/svxids.hrc> +#include <svtools/langhelp.hxx> #include <tools/debug.hxx> #include <tools/diagnose_ex.h> #include <unotools/confignode.hxx> @@ -198,10 +199,11 @@ IMPL_LINK( OExtensionNotPresentDialog, Download_Click, PushButton*, EMPTYARG ) if (suDownloadURL.getLength() == 0) { // fallback - suDownloadURL = UNISTRING("http://extensions.services.openoffice.org"); + suDownloadURL = UNISTRING("http://extensions.documentfoundation.org"); } // open such URL in a browser + localizeWebserviceURI(suDownloadURL); uno::Reference< com::sun::star::system::XSystemShellExecute > xShellExecute( getShellExecuter() ); xShellExecute->execute( suDownloadURL, ::rtl::OUString(), com::sun::star::system::SystemShellExecuteFlags::DEFAULTS ); } |