From d4b67611c421ebe9b75284106fe389b434419961 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 16 Mar 2012 11:16:14 +0100 Subject: Introduced SystemShellExecuteFlags::URIS_ONLY --- swext/mediawiki/src/com/sun/star/wiki/Helper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'swext') diff --git a/swext/mediawiki/src/com/sun/star/wiki/Helper.java b/swext/mediawiki/src/com/sun/star/wiki/Helper.java index 7ecd9ecb0e7c..e392811984cd 100644 --- a/swext/mediawiki/src/com/sun/star/wiki/Helper.java +++ b/swext/mediawiki/src/com/sun/star/wiki/Helper.java @@ -708,7 +708,7 @@ public class Helper Object oSystemShell = xContext.getServiceManager().createInstanceWithContext( "com.sun.star.system.SystemShellExecute", xContext ); XSystemShellExecute xSystemShell = (XSystemShellExecute)UnoRuntime.queryInterface( XSystemShellExecute.class, oSystemShell ); if ( xSystemShell != null ) - xSystemShell.execute( sURL, "", SystemShellExecuteFlags.DEFAULTS ); + xSystemShell.execute( sURL, "", SystemShellExecuteFlags.URIS_ONLY ); } catch( Exception e ) { -- cgit