diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-12-13 07:40:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-12-13 10:11:43 +0000 |
commit | 2338a8c9c53d84e269ee85843bf7bb6a0015ea2d (patch) | |
tree | 02f2bb1f37cbbd99cbe30f620b28f8e444e09cbd /idl/inc | |
parent | 34cbfad1b27cf28c10974f8170abe00e824f4a9d (diff) |
convert GetMangleName
Diffstat (limited to 'idl/inc')
-rw-r--r-- | idl/inc/slot.hxx | 2 | ||||
-rw-r--r-- | idl/inc/types.hxx | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/idl/inc/slot.hxx b/idl/inc/slot.hxx index b4036ea2ff2d..69b589f2e827 100644 --- a/idl/inc/slot.hxx +++ b/idl/inc/slot.hxx @@ -189,7 +189,7 @@ public: virtual sal_Bool IsVariable() const; virtual sal_Bool IsMethod() const; - virtual ByteString GetMangleName( sal_Bool bVariable ) const; + virtual rtl::OString GetMangleName( sal_Bool bVariable ) const; SvMetaAttribute * GetMethod() const; SvMetaType * GetSlotType() const; diff --git a/idl/inc/types.hxx b/idl/inc/types.hxx index 4ee6889ec4d3..2fe4e2612837 100644 --- a/idl/inc/types.hxx +++ b/idl/inc/types.hxx @@ -103,7 +103,7 @@ public: virtual sal_Bool IsMethod() const; virtual sal_Bool IsVariable() const; - virtual ByteString GetMangleName( sal_Bool bVariable ) const; + virtual rtl::OString GetMangleName( sal_Bool bVariable ) const; #ifdef IDL_COMPILER @@ -178,12 +178,12 @@ protected: public: SV_DECL_META_FACTORY1( SvMetaType, SvMetaExtern, 18 ) SvMetaType(); - SvMetaType( const ByteString & rTypeName, char cParserChar, - const ByteString & rCName ); - SvMetaType( const ByteString & rTypeName, const ByteString & rSbxName, - const ByteString & rOdlName, char cParserChar, - const ByteString & rCName, const ByteString & rBasicName, - const ByteString & rBasicPostfix ); + SvMetaType( const rtl::OString& rTypeName, char cParserChar, + const rtl::OString& rCName ); + SvMetaType( const rtl::OString& rTypeName, const rtl::OString& rSbxName, + const rtl::OString& rOdlName, char cParserChar, + const rtl::OString& rCName, const rtl::OString& rBasicName, + const rtl::OString& rBasicPostfix ); SvMetaAttributeMemberList & GetAttrList() const; sal_uLong GetAttrCount() const |