diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-19 23:44:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-20 10:11:42 +0100 |
commit | 557ba436637d3cc926c063aba0458f04a916fa66 (patch) | |
tree | 9b5619297bb2dec34ff1a7b6f6c1899b0959cee7 /idl/source/objects | |
parent | 512c562b8671fb8998ab8c6f31502b59f108e13a (diff) |
ByteString->rtl::OString[Buffer]
Diffstat (limited to 'idl/source/objects')
-rw-r--r-- | idl/source/objects/types.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx index 625b06678a8f..d027e8610391 100644 --- a/idl/source/objects/types.cxx +++ b/idl/source/objects/types.cxx @@ -1699,14 +1699,14 @@ void SvMetaType::WriteTheType( SvIdlDataBase & rBase, SvStream & rOutStm, WriteMethodArgs( rBase, rOutStm, nTab +2, nT ); } -ByteString SvMetaType::GetParserString() const +rtl::OString SvMetaType::GetParserString() const { SvMetaType * pBT = GetBaseType(); if( pBT != this ) return pBT->GetParserString(); int type = GetType(); - ByteString aPStr; + rtl::OString aPStr; if( TYPE_METHOD == type || TYPE_STRUCT == type ) { @@ -1719,7 +1719,7 @@ ByteString SvMetaType::GetParserString() const } } else - aPStr = GetParserChar(); + aPStr = rtl::OString(GetParserChar()); return aPStr; } |