diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-29 08:59:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-29 09:04:33 +0100 |
commit | 97e3d208bad8f08591fb30c510ed351a695fb334 (patch) | |
tree | ad8a78732a068939a5313c82885c6f5348be819e /basic | |
parent | e8696e99dbc05a83625083e805f4d330451aa04a (diff) |
remove deprecated ByteString::CreateFromInt64
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/app/dialogs.cxx | 12 | ||||
-rw-r--r-- | basic/source/sbx/sbxobj.cxx | 6 | ||||
-rw-r--r-- | basic/source/sbx/sbxvar.cxx | 2 |
3 files changed, 12 insertions, 8 deletions
diff --git a/basic/source/app/dialogs.cxx b/basic/source/app/dialogs.cxx index 20b7bd1c7cf8..c9a3d72e8c33 100644 --- a/basic/source/app/dialogs.cxx +++ b/basic/source/app/dialogs.cxx @@ -556,7 +556,8 @@ void CrashreportOptions::Save( Config &aConfig ) aConfig.WriteKey( "UseProxy", "false" ); aConfig.WriteKey( "ProxyServer", ByteString( aEDCRHost.GetText(), RTL_TEXTENCODING_UTF8 ) ); - aConfig.WriteKey( "ProxyPort", ByteString::CreateFromInt64( aNFCRPort.GetValue() ) ); + aConfig.WriteKey("ProxyPort", + rtl::OString::valueOf(static_cast<sal_Int64>(aNFCRPort.GetValue()))); if ( aCBAllowContact.IsChecked() ) aConfig.WriteKey( "AllowContact", "true" ); @@ -644,8 +645,10 @@ void MiscOptions::Save( Config &aConfig ) { aConfig.SetGroup("Communication"); aConfig.WriteKey( "Host", ByteString( aEDHost.GetText(), RTL_TEXTENCODING_UTF8 ) ); - aConfig.WriteKey( "TTPort", ByteString::CreateFromInt64( aNFTTPort.GetValue() ) ); - aConfig.WriteKey( "UnoPort", ByteString::CreateFromInt64( aNFUNOPort.GetValue() ) ); + aConfig.WriteKey("TTPort", + rtl::OString::valueOf(static_cast<sal_Int64>(aNFTTPort.GetValue()))); + aConfig.WriteKey("UnoPort", + rtl::OString::valueOf(static_cast<sal_Int64>(aNFUNOPort.GetValue()))); aConfig.SetGroup("Misc"); aConfig.WriteKey( "ServerTimeout", ByteString::CreateFromInt32( aServerTimeout.GetTime().GetTime() ) ); @@ -656,7 +659,8 @@ void MiscOptions::Save( Config &aConfig ) sal_uInt16 n; for ( n = nOldMaxLRU ; n > aTFMaxLRU.GetValue() ; n-- ) aConfig.DeleteKey( ByteString("LRU").Append( ByteString::CreateFromInt32( n ) ) ); - aConfig.WriteKey( "MaxLRU", ByteString::CreateFromInt64( aTFMaxLRU.GetValue() ) ); + aConfig.WriteKey("MaxLRU", + rtl::OString::valueOf(static_cast<sal_Int64>(aTFMaxLRU.GetValue()))); aConfig.SetGroup("OOoProgramDir"); aConfig.WriteKey( C_KEY_AKTUELL, ByteString( aEDProgDir.GetText(), RTL_TEXTENCODING_UTF8 ) ); diff --git a/basic/source/sbx/sbxobj.cxx b/basic/source/sbx/sbxobj.cxx index 8c1bbbec6119..bf4bd83c7b28 100644 --- a/basic/source/sbx/sbxobj.cxx +++ b/basic/source/sbx/sbxobj.cxx @@ -866,17 +866,17 @@ void SbxObject::Dump( SvStream& rStrm, sal_Bool bFill ) ByteString aNameStr( (const UniString&)GetName(), RTL_TEXTENCODING_ASCII_US ); ByteString aClassNameStr( (const UniString&)aClassName, RTL_TEXTENCODING_ASCII_US ); rStrm << "Object( " - << ByteString::CreateFromInt64( (sal_uIntPtr) this ).GetBuffer() << "=='" + << rtl::OString::valueOf(reinterpret_cast<sal_Int64>(this)).getStr()<< "=='" << ( aNameStr.Len() ? aNameStr.GetBuffer() : "<unnamed>" ) << "', " << "of class '" << aClassNameStr.GetBuffer() << "', " << "counts " - << ByteString::CreateFromInt64( GetRefCount() ).GetBuffer() + << rtl::OString::valueOf(static_cast<sal_Int64>(GetRefCount())).getStr() << " refs, "; if ( GetParent() ) { ByteString aParentNameStr( (const UniString&)GetName(), RTL_TEXTENCODING_ASCII_US ); rStrm << "in parent " - << ByteString::CreateFromInt64( (sal_uIntPtr) GetParent() ).GetBuffer() + << rtl::OString::valueOf(reinterpret_cast<sal_Int64>(GetParent())).getStr() << "=='" << ( aParentNameStr.Len() ? aParentNameStr.GetBuffer() : "<unnamed>" ) << "'"; } else diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx index 9a99f06b151c..77c3b51d74a9 100644 --- a/basic/source/sbx/sbxvar.cxx +++ b/basic/source/sbx/sbxvar.cxx @@ -641,7 +641,7 @@ void SbxVariable::Dump( SvStream& rStrm, sal_Bool bFill ) { ByteString aBNameStr( (const UniString&)GetName( SbxNAME_SHORT_TYPES ), RTL_TEXTENCODING_ASCII_US ); rStrm << "Variable( " - << ByteString::CreateFromInt64( (sal_uIntPtr) this ).GetBuffer() << "==" + << rtl::OString::valueOf(reinterpret_cast<sal_Int64>(this)).getStr() << "==" << aBNameStr.GetBuffer(); ByteString aBParentNameStr( (const UniString&)GetParent()->GetName(), RTL_TEXTENCODING_ASCII_US ); if ( GetParent() ) |