summaryrefslogtreecommitdiff
path: root/bean/com/sun
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-07-25 06:56:41 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-07-25 06:56:41 +0000
commit6237da873730e174a558fe5105f49b949531b210 (patch)
treeed41f4f2f7f4039358903f9e6112994a87e1172c /bean/com/sun
parent49cd1249b108db0470d6c53c7d1f25406222d7de (diff)
INTEGRATION: CWS jl35 (1.9.16); FILE MERGED
2006/05/22 13:36:41 jl 1.9.16.1: #25615# pipename replaced space with + rather then _
Diffstat (limited to 'bean/com/sun')
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeConnection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java
index ca36d50d07ba..81f7e011b68d 100644
--- a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java
+++ b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java
@@ -4,9 +4,9 @@
*
* $RCSfile: LocalOfficeConnection.java,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 22:00:18 $
+ * last change: $Author: rt $ $Date: 2006-07-25 07:56:41 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -729,7 +729,7 @@ public class LocalOfficeConnection
// turn user name into a URL and file system safe name (% chars will not work)
String aPipeName = System.getProperty("user.name") + OFFICE_ID_SUFFIX;
aPipeName = replaceAll( aPipeName, "_", "%B7" );
- return replaceAll( replaceAll( java.net.URLEncoder.encode(aPipeName), "\\+", "%20" ), "%", "_" );
+ return replaceAll( replaceAll( java.net.URLEncoder.encode(aPipeName), "+", "%20" ), "%", "_" );
}
/**