INTEGRATION: CWS tbe25 (1.13.8); FILE MERGED

2005/11/14 11:38:04 tbe 1.13.8.1: #i57511# API: SimpleUnoBootstap pops UI
This commit is contained in:
Oliver Bolte
2006-01-20 09:11:54 +00:00
parent e960a9cc6a
commit 22a8013e26

View File

@@ -4,9 +4,9 @@
* *
* $RCSfile: Bootstrap.java,v $ * $RCSfile: Bootstrap.java,v $
* *
* $Revision: 1.13 $ * $Revision: 1.14 $
* *
* last change: $Author: rt $ $Date: 2005-09-07 18:35:19 $ * last change: $Author: obo $ $Date: 2006-01-20 10:11:54 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@@ -257,11 +257,14 @@ public class Bootstrap {
Long.toString( (new Random()).nextLong() & 0x7fffffffffffffffL ); Long.toString( (new Random()).nextLong() & 0x7fffffffffffffffL );
// create call with arguments // create call with arguments
String[] cmdArray = new String[4]; String[] cmdArray = new String[7];
cmdArray[0] = fOffice.getPath(); cmdArray[0] = fOffice.getPath();
cmdArray[1] = "-nologo"; cmdArray[1] = "-nologo";
cmdArray[2] = "-nodefault"; cmdArray[2] = "-nodefault";
cmdArray[3] = "-accept=pipe,name=" + sPipeName + ";urp;"; cmdArray[3] = "-norestore";
cmdArray[4] = "-nocrashreport";
cmdArray[5] = "-nolockcheck";
cmdArray[6] = "-accept=pipe,name=" + sPipeName + ";urp;";
// start office process // start office process
Process p = Runtime.getRuntime().exec( cmdArray ); Process p = Runtime.getRuntime().exec( cmdArray );