summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-18 08:26:33 +0200
committerNoel Grandin <noel@peralex.com>2016-03-15 08:52:23 +0200
commit52e438caafc3cd24b3759b08c1aaee88e5b67877 (patch)
treeceb8aef8dd12c2b81caf2138ac194b086d9a77ff /oox
parenta0d5f0896ed7f2de8ceffd664ee469a383ce7d53 (diff)
remove unnecessary parentheses in case labels
Change-Id: I987bf68c767709080c67c8b183c036a4109c6caa
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/vmlexport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx
index 1055b2bfa067..9c069e9a2304 100644
--- a/oox/source/export/vmlexport.cxx
+++ b/oox/source/export/vmlexport.cxx
@@ -888,7 +888,7 @@ void VMLExport::AddFlipXY( )
{
case SHAPEFLAG_FLIPH: m_pShapeStyle->append( ";flip:x" ); break;
case SHAPEFLAG_FLIPV: m_pShapeStyle->append( ";flip:y" ); break;
- case (nFlipHandV): m_pShapeStyle->append( ";flip:xy" ); break;
+ case nFlipHandV: m_pShapeStyle->append( ";flip:xy" ); break;
}
}