From f25fa80836284f8db2ea2a02da3137f976e39f1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Budischewski?= Date: Mon, 24 Jun 2002 14:28:47 +0000 Subject: [PATCH] #99601# multiple tempfiles now work under unix, problem with temporary file name creation fixed --- codemaker/source/codemaker/global.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codemaker/source/codemaker/global.cxx b/codemaker/source/codemaker/global.cxx index b82d6e25271d..d437516e1c0e 100644 --- a/codemaker/source/codemaker/global.cxx +++ b/codemaker/source/codemaker/global.cxx @@ -2,9 +2,9 @@ * * $RCSfile: global.cxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: hr $ $Date: 2002-02-21 11:31:21 $ + * last change: $Author: jbu $ $Date: 2002-06-24 15:28:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -147,7 +147,7 @@ OString makeTempName(sal_Char* prefix) #endif #ifdef SAL_UNX - strcat(tmpPattern, "\\"); + strcat(tmpPattern, "/"); strcat(tmpPattern, pPrefix); strcat(tmpPattern, "XXXXXX"); #ifdef FREEBSD