From 6237da873730e174a558fe5105f49b949531b210 Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Tue, 25 Jul 2006 06:56:41 +0000 Subject: 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 _ --- bean/com/sun/star/comp/beans/LocalOfficeConnection.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bean/com') 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" ), "%", "_" ); } /** -- cgit