diff options
Diffstat (limited to 'sot/source/sdstor/stgole.cxx')
-rw-r--r-- | sot/source/sdstor/stgole.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/stgole.cxx b/sot/source/sdstor/stgole.cxx index 1615bd2feda5..077bbb79f4f6 100644 --- a/sot/source/sdstor/stgole.cxx +++ b/sot/source/sdstor/stgole.cxx @@ -94,7 +94,7 @@ void StgInternalStream::Commit() ///////////////////////// class StgCompObjStream StgCompObjStream::StgCompObjStream( BaseStorage& rStg, bool bWr ) - : StgInternalStream( rStg, OUString("\1CompObj"), bWr ) + : StgInternalStream( rStg, "\1CompObj", bWr ) { memset( &m_aClsId, 0, sizeof( ClsId ) ); m_nCbFormat = SotClipboardFormatId::NONE; @@ -163,7 +163,7 @@ bool StgCompObjStream::Store() /////////////////////////// class StgOleStream StgOleStream::StgOleStream( BaseStorage& rStg ) - : StgInternalStream( rStg, OUString("\1Ole"), true ) + : StgInternalStream( rStg, "\1Ole", true ) { } |