summaryrefslogtreecommitdiff
path: root/svtools/source/graphic/grfcache.cxx
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 /svtools/source/graphic/grfcache.cxx
parenta0d5f0896ed7f2de8ceffd664ee469a383ce7d53 (diff)
remove unnecessary parentheses in case labels
Change-Id: I987bf68c767709080c67c8b183c036a4109c6caa
Diffstat (limited to 'svtools/source/graphic/grfcache.cxx')
-rw-r--r--svtools/source/graphic/grfcache.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/graphic/grfcache.cxx b/svtools/source/graphic/grfcache.cxx
index 623e7b14d296..5ef6e8763dd7 100644
--- a/svtools/source/graphic/grfcache.cxx
+++ b/svtools/source/graphic/grfcache.cxx
@@ -69,7 +69,7 @@ GraphicID::GraphicID( const GraphicObject& rObj )
switch( rGraphic.GetType() )
{
- case( GRAPHIC_BITMAP ):
+ case GRAPHIC_BITMAP:
{
if(rGraphic.getSvgData().get())
{
@@ -102,7 +102,7 @@ GraphicID::GraphicID( const GraphicObject& rObj )
}
break;
- case( GRAPHIC_GDIMETAFILE ):
+ case GRAPHIC_GDIMETAFILE:
{
const GDIMetaFile& rMtf = rGraphic.GetGDIMetaFile();
@@ -227,7 +227,7 @@ bool GraphicCacheEntry::ImplInit( const GraphicObject& rObj )
switch( rGraphic.GetType() )
{
- case( GRAPHIC_BITMAP ):
+ case GRAPHIC_BITMAP:
{
if(rGraphic.getSvgData().get())
{
@@ -244,7 +244,7 @@ bool GraphicCacheEntry::ImplInit( const GraphicObject& rObj )
}
break;
- case( GRAPHIC_GDIMETAFILE ):
+ case GRAPHIC_GDIMETAFILE:
{
mpMtf = new GDIMetaFile( rGraphic.GetGDIMetaFile() );
}