From 0a0e18c93a7a3791d3aa25555fd41c680a5d82d2 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Wed, 13 Apr 2005 07:14:49 +0000 Subject: [PATCH] INTEGRATION: CWS visibility03 (1.20.46); FILE MERGED 2005/03/02 13:12:03 mhu 1.20.46.1: #i40092# Fixed string ctor (char literal) usage. --- psprint/source/helper/helper.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/psprint/source/helper/helper.cxx b/psprint/source/helper/helper.cxx index 52fc77d658a8..61ac0c4dcb31 100644 --- a/psprint/source/helper/helper.cxx +++ b/psprint/source/helper/helper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: helper.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: obo $ $Date: 2004-06-01 08:58:42 $ + * last change: $Author: obo $ $Date: 2005-04-13 08:14:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -132,7 +132,7 @@ static OUString getEnvironmentPath( const char* pKey, sal_Unicode cPrefix ) const char* pValue = getenv( pKey ); if( pValue && *pValue ) { - aPath = OUString( cPrefix ); + aPath = OUString( String( cPrefix ) ); aPath += OUString( pValue, strlen( pValue ), gsl_getSystemTextEncoding() ); } return aPath;