diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-05 10:41:04 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-12 15:31:40 +0000 |
commit | 15535e32ddcfee451d4dbc9be9de0b8c9f9d78d4 (patch) | |
tree | db4badc477cea1ecd51f5fab82ce0f24ae20f155 /tools/source/ref/globname.cxx | |
parent | 7accbd8c0d7f1d0b87748f0de599c4d8b469a61e (diff) |
convert SvStream::operator>> methods to ReadXXX methods
First, I updated the clang rewriter to do the conversion.
Then I lightly hand-tweaked the output for the few places where
the rewriter messed up, mostly when dealing with calls on "this".
Change-Id: I40a6a977959cd97415c678eafc8507de8aa3b1a9
Reviewed-on: https://gerrit.libreoffice.org/7879
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'tools/source/ref/globname.cxx')
-rw-r--r-- | tools/source/ref/globname.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/ref/globname.cxx b/tools/source/ref/globname.cxx index f23b1ea6ca7d..3fe206497344 100644 --- a/tools/source/ref/globname.cxx +++ b/tools/source/ref/globname.cxx @@ -142,14 +142,14 @@ SvStream& operator >> ( SvStream& rStr, SvGlobalName & rObj ) rObj.NewImp(); // copy if necessary sal_uInt32 a; - rStr >> a; + rStr.ReadUInt32( a ); memcpy(rObj.pImp->szData, &a, sizeof(sal_uInt32)); sal_uInt16 b; - rStr >> b; + rStr.ReadUInt16( b ); memcpy(rObj.pImp->szData+4, &b, sizeof(sal_uInt16)); - rStr >> b; + rStr.ReadUInt16( b ); memcpy(rObj.pImp->szData+6, &b, sizeof(sal_uInt16)); rStr.Read( (sal_Char *)&rObj.pImp->szData[ 8 ], 8 ); |