summaryrefslogtreecommitdiff
path: root/javaunohelper/com
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-01-20 09:11:54 +0000
committerOliver Bolte <obo@openoffice.org>2006-01-20 09:11:54 +0000
commit22a8013e26cc9ff1d0ce827b11294fc85f9e8aa0 (patch)
tree481f11a7b4ac39540a06b1f57cfb987fa43ea766 /javaunohelper/com
parente960a9cc6ac9ae76657341d77d138c0b8977df96 (diff)
INTEGRATION: CWS tbe25 (1.13.8); FILE MERGED
2005/11/14 11:38:04 tbe 1.13.8.1: #i57511# API: SimpleUnoBootstap pops UI
Diffstat (limited to 'javaunohelper/com')
-rw-r--r--javaunohelper/com/sun/star/comp/helper/Bootstrap.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
index 64be9f0dfd56..37eb3c984952 100644
--- a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
+++ b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java
@@ -4,9 +4,9 @@
*
* $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 terms of GNU Lesser General Public License Version 2.1.
@@ -257,11 +257,14 @@ public class Bootstrap {
Long.toString( (new Random()).nextLong() & 0x7fffffffffffffffL );
// create call with arguments
- String[] cmdArray = new String[4];
+ String[] cmdArray = new String[7];
cmdArray[0] = fOffice.getPath();
cmdArray[1] = "-nologo";
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
Process p = Runtime.getRuntime().exec( cmdArray );