summaryrefslogtreecommitdiffstats
path: root/svtools/source/misc/transfer2.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-09 22:36:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-10 09:28:39 +0000
commit5dbd8286f4623015d6012d20ad24c301e57ca96f (patch)
tree6db4a82962dd7436aa4dae33c59a5a47559103bf /svtools/source/misc/transfer2.cxx
parentHey Joe, let's ditch the itembrowser (diff)
downloadcore-5dbd8286f4623015d6012d20ad24c301e57ca96f.tar.gz
core-5dbd8286f4623015d6012d20ad24c301e57ca96f.zip
ByteString->rtl::OString
Diffstat (limited to 'svtools/source/misc/transfer2.cxx')
-rw-r--r--svtools/source/misc/transfer2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/misc/transfer2.cxx b/svtools/source/misc/transfer2.cxx
index fe8921061f8f..d8ffe9ec9697 100644
--- a/svtools/source/misc/transfer2.cxx
+++ b/svtools/source/misc/transfer2.cxx
@@ -511,9 +511,9 @@ void TransferDataContainer::CopyAnyData( sal_uLong nFormatId,
// -----------------------------------------------------------------------------
void TransferDataContainer::CopyByteString( sal_uLong nFormatId,
- const ByteString& rStr )
+ const rtl::OString& rStr )
{
- CopyAnyData( nFormatId, rStr.GetBuffer(), rStr.Len() );
+ CopyAnyData( nFormatId, rStr.getStr(), rStr.getLength() );
}
// -----------------------------------------------------------------------------