diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-02-07 18:18:26 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-07 19:06:16 +0000 |
commit | bddc774795c139f84e0f76a83eb1b046b9f51a32 (patch) | |
tree | 58f19132498c0a0366719b936f53a7e4dacfc747 /oox | |
parent | 58d4a3122ce59c68aa7a4b7e09f76bf15865be9b (diff) |
remove CREATE_OSTRING macro
Change-Id: I7d5e1570918adc3b0cf2063d9735414233011a81
Reviewed-on: https://gerrit.libreoffice.org/34009
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/vml/vmlinputstream.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/vml/vmlinputstream.cxx b/oox/source/vml/vmlinputstream.cxx index 0c413b15fc01..ee33bf606721 100644 --- a/oox/source/vml/vmlinputstream.cxx +++ b/oox/source/vml/vmlinputstream.cxx @@ -263,8 +263,8 @@ InputStream::InputStream( const Reference< XComponentContext >& rxContext, const mxTextStrm( TextInputStream::createXTextInputStream( rxContext, rxInStrm, RTL_TEXTENCODING_ISO_8859_1 ) ), maOpeningBracket( 1 ), maClosingBracket( 1 ), - maOpeningCData( CREATE_OSTRING( "<![CDATA[" ) ), - maClosingCData( CREATE_OSTRING( "]]>" ) ), + maOpeningCData( "<![CDATA[" ), + maClosingCData( "]]>" ), mnBufferPos( 0 ) { if (!mxTextStrm.is()) |