From b2878af3223c438abeecc77d9976e56db31a5b49 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 6 Feb 2014 12:44:59 +0200 Subject: more SvStream:operator>> conversion Convert the template based read_lenPrefixed methods to regular methods. Change-Id: Ifd0e93aca055e55a0575e4377ec2b8e266dfb019 Reviewed-on: https://gerrit.libreoffice.org/7895 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- sot/source/sdstor/ucbstorage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sot') diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index 51e36cf714c8..9d3e66ab648c 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -3160,7 +3160,7 @@ OUString UCBStorage::GetLinkedFile( SvStream &rStream ) rStream.ReadUInt32( nBytes ); if( nBytes == 0x04034b50 ) { - OString aTmp = read_lenPrefixed_uInt8s_ToOString(rStream); + OString aTmp = read_uInt16_lenPrefixed_uInt8s_ToOString(rStream); if (aTmp.match("ContentURL=")) { aString = OStringToOUString(aTmp.copy(11), RTL_TEXTENCODING_UTF8); -- cgit