diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-16 08:07:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-01-16 08:08:44 +0200 |
commit | 2f69f6efa0ef3e6647e4a438755c171182a7554c (patch) | |
tree | 98dd816a10afe2aed6cf5c085794ac4198b7e906 /svtools | |
parent | 4c93c341be1425401112eed3581e8b8a6308880d (diff) |
remove unnecessary parentheses
left over from "SVStream operator>> to Write method" conversion
Change-Id: I619eb743d7890d5c70d0a94e51ce263567fa6f3b
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/misc/imap.cxx | 2 | ||||
-rw-r--r-- | svtools/source/misc/imap3.cxx | 2 | ||||
-rw-r--r-- | svtools/source/misc/transfer.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/misc/imap.cxx b/svtools/source/misc/imap.cxx index d3174ee7d276..61db904d9a19 100644 --- a/svtools/source/misc/imap.cxx +++ b/svtools/source/misc/imap.cxx @@ -83,7 +83,7 @@ void IMapObject::Write( SvStream& rOStm, const OUString& rBaseURL ) const rOStm.WriteUInt16( GetType() ); rOStm.WriteUInt16( GetVersion() ); - rOStm.WriteUInt16( eEncoding ); + rOStm.WriteUInt16( eEncoding ); const OString aRelURL = OUStringToOString( URIHelper::simpleNormalizedMakeRelative(rBaseURL, aURL), eEncoding); diff --git a/svtools/source/misc/imap3.cxx b/svtools/source/misc/imap3.cxx index b0a198a7fa53..31246d3caf28 100644 --- a/svtools/source/misc/imap3.cxx +++ b/svtools/source/misc/imap3.cxx @@ -70,7 +70,7 @@ IMapCompat::~IMapCompat() const sal_uLong nEndPos = pRWStm->Tell(); pRWStm->Seek( nCompatPos ); - pRWStm->WriteUInt32( ( nEndPos - nTotalSize ) ); + pRWStm->WriteUInt32( nEndPos - nTotalSize ); pRWStm->Seek( nEndPos ); } else diff --git a/svtools/source/misc/transfer.cxx b/svtools/source/misc/transfer.cxx index d963953b6ca0..9e1e6f6bc7e8 100644 --- a/svtools/source/misc/transfer.cxx +++ b/svtools/source/misc/transfer.cxx @@ -98,7 +98,7 @@ SvStream& WriteTransferableObjectDescriptor( SvStream& rOStm, const Transferable const sal_uInt32 nLastPos = rOStm.Tell(); rOStm.Seek( nFirstPos ); - rOStm.WriteUInt32( nLastPos - nFirstPos ); + rOStm.WriteUInt32( nLastPos - nFirstPos ); rOStm.Seek( nLastPos ); return rOStm; |