summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@novell.com>2010-10-07 12:27:45 +0200
committerThorsten Behrens <tbehrens@novell.com>2010-10-07 12:35:59 +0200
commit525ec67a47f2a4e66cb7713826e1b02561bbd859 (patch)
tree3530a57b45c87fe22f7e756c753ba3ed9bccfa97
parent25a10665e1fcf74f6bbf01b8037c9ce573536d0b (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.cxx4
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 );
}