diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-04-13 08:29:39 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-04-13 08:29:39 +0000 |
commit | a85394e4cd9e5f0300a393b926dcb95fa569260d (patch) | |
tree | 6a85648421d11be112fe93a9433b2c462aeb0cdb /xmloff | |
parent | 5bc8675a69cea1e9e7c4a948db21c6e9453275b7 (diff) |
INTEGRATION: CWS visibility03 (1.4.96); FILE MERGED
2005/03/24 22:10:31 mhu 1.4.96.2: RESYNC: (1.4-1.7); FILE MERGED
2005/03/02 16:02:37 mhu 1.4.96.1: #i40092# Fixed string ctor (char literal) usage.
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/shapeexport4.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/draw/shapeexport4.cxx b/xmloff/source/draw/shapeexport4.cxx index 5a779d2e7e32..16b87455af24 100644 --- a/xmloff/source/draw/shapeexport4.cxx +++ b/xmloff/source/draw/shapeexport4.cxx @@ -2,9 +2,9 @@ * * $RCSfile: shapeexport4.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: vg $ $Date: 2005-03-10 12:08:10 $ + * last change: $Author: obo $ $Date: 2005-04-13 09:29:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -245,7 +245,7 @@ void ImpExportEquations( SvXMLExport& rExport, const uno::Sequence< rtl::OUStrin sal_Int32 i; for ( i = 0; i < rEquations.getLength(); i++ ) { - rtl::OUString aStr( (sal_Unicode)'f' ); + rtl::OUString aStr( String( 'f' ) ); aStr += rtl::OUString::valueOf( i ); rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME, aStr ); @@ -257,7 +257,7 @@ void ImpExportEquations( SvXMLExport& rExport, const uno::Sequence< rtl::OUStrin if ( nIndex != -1 ) { rtl::OUString aNew( aStr.copy( 0, nIndex + 1 ) ); - aNew += rtl::OUString( (sal_Unicode)'f' ); + aNew += String( 'f' ); aNew += aStr.copy( nIndex + 1, ( aStr.getLength() - nIndex ) - 1 ); aStr = aNew; nIndex++; |