From 2f69f6efa0ef3e6647e4a438755c171182a7554c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 16 Jan 2015 08:07:06 +0200 Subject: remove unnecessary parentheses left over from "SVStream operator>> to Write method" conversion Change-Id: I619eb743d7890d5c70d0a94e51ce263567fa6f3b --- sw/source/filter/ww8/wrtw8esh.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/filter/ww8') diff --git a/sw/source/filter/ww8/wrtw8esh.cxx b/sw/source/filter/ww8/wrtw8esh.cxx index 232ebcc8f01b..d5f0ae026ef1 100644 --- a/sw/source/filter/ww8/wrtw8esh.cxx +++ b/sw/source/filter/ww8/wrtw8esh.cxx @@ -2209,9 +2209,9 @@ SwEscherEx::SwEscherEx(SvStream* pStrm, WW8Export& rWW8Wrt) OpenContainer( ESCHER_DggContainer ); sal_uInt16 nColorCount = 4; - pStrm ->WriteUInt16( ( nColorCount << 4 ) ) // instance + pStrm ->WriteUInt16( nColorCount << 4 ) // instance .WriteUInt16( ESCHER_SplitMenuColors ) // record type - .WriteUInt32( ( nColorCount * 4 ) ) // size + .WriteUInt32( nColorCount * 4 ) // size .WriteUInt32( 0x08000004 ) .WriteUInt32( 0x08000001 ) .WriteUInt32( 0x08000002 ) -- cgit