diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-18 23:12:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-19 09:59:23 +0100 |
commit | 2d4db01597c2b2df64aaa7ccbe42ed587faba838 (patch) | |
tree | 7fede048278517ef2e5b4d4132ed6ccbb5692ab0 /idl/source/prj/database.cxx | |
parent | 5bc9435b02b0f3993624a5110b8b47c82da00b1e (diff) |
ByteString->rtl::OString
Diffstat (limited to 'idl/source/prj/database.cxx')
-rw-r--r-- | idl/source/prj/database.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx index fa37d2d003a3..5761a459c50e 100644 --- a/idl/source/prj/database.cxx +++ b/idl/source/prj/database.cxx @@ -534,10 +534,10 @@ SvMetaClass * SvIdlDataBase::ReadKnownClass( SvTokenStream & rInStm ) return NULL; } -void SvIdlDataBase::Write( const ByteString & rText ) +void SvIdlDataBase::Write(const rtl::OString& rText) { if( nVerbosity != 0 ) - fprintf( stdout, "%s", rText.GetBuffer() ); + fprintf( stdout, "%s", rText.getStr() ); } void SvIdlDataBase::WriteError( const ByteString & rErrWrn, |