summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@yahoo.com>2013-11-22 22:36:02 +0100
committerMatteo Casalin <matteo.casalin@yahoo.com>2013-11-23 14:20:39 +0100
commit26201202b7df6885891ea23cf9ab59206c5ddcb7 (patch)
tree5315738d540a11bdba2c671d5c3fb6952efa59c6 /sw
parent19646b84f9fd71e0b9cb79a2685a4075f5cfc174 (diff)
No need for an else after a break
Change-Id: I538fbbe5e628d03b4e641c5eb558b30d7654333e
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/wrtw8nds.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx b/sw/source/filter/ww8/wrtw8nds.cxx
index bdc09eb4e84c..a136113ad9f1 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -526,11 +526,9 @@ void SwWW8AttrIter::OutFlys(sal_Int32 nSwPos)
if ( nPos != nSwPos )
break;
- else
- {
- m_rExport.AttrOutput().OutputFlyFrame( *maFlyIter );
- ++maFlyIter;
- }
+
+ m_rExport.AttrOutput().OutputFlyFrame( *maFlyIter );
+ ++maFlyIter;
}
}