summaryrefslogtreecommitdiff
path: root/psprint
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-04-13 07:14:49 +0000
committerOliver Bolte <obo@openoffice.org>2005-04-13 07:14:49 +0000
commit0a0e18c93a7a3791d3aa25555fd41c680a5d82d2 (patch)
tree76daa46a6a6f101bb66c060b35ad58665488ac2d /psprint
parente2c4d707ae99ff0fe6b1471063cbd742e1d0fe2b (diff)
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.
Diffstat (limited to 'psprint')
-rw-r--r--psprint/source/helper/helper.cxx6
1 files 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;