diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-04-13 11:10:48 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-04-13 11:10:48 +0000 |
commit | 40178f84a5c0a51989e6f7ceb70a1f04b38b00ad (patch) | |
tree | 70b5406c27b08b7887c20d8c0f8eed69a0cdedab /tools | |
parent | 41e1ddda79d735bb208b8158f70ba1ad1a8f4631 (diff) |
INTEGRATION: CWS visibility03 (1.6.86); FILE MERGED
2005/03/02 13:23:42 mhu 1.6.86.1: #i40092# Fixed string ctor (char literal) usage.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/fsys/tempfile.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/source/fsys/tempfile.cxx b/tools/source/fsys/tempfile.cxx index cd4fdcaa7a7e..594c0590447d 100644 --- a/tools/source/fsys/tempfile.cxx +++ b/tools/source/fsys/tempfile.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tempfile.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: hjs $ $Date: 2004-06-25 17:11:36 $ + * last change: $Author: obo $ $Date: 2005-04-13 12:10:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -314,8 +314,8 @@ String TempFile::SetTempNameBaseDirectory( const String &rBaseName ) FileBase::RC err= Directory::create( aName ); if ( err == FileBase::E_None || err == FileBase::E_EXIST ) { - rTempNameBase_Impl = aName; - rTempNameBase_Impl += ::rtl::OUString( '/' ); + rTempNameBase_Impl = aName; + rTempNameBase_Impl += String( '/' ); TempFile aBase( NULL, sal_True ); if ( aBase.IsValid() ) |