summaryrefslogtreecommitdiff
path: root/idl/source/objects/types.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/objects/types.cxx')
-rw-r--r--idl/source/objects/types.cxx6
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;
}