sw/source/filter/ww8/docxattributeoutput.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 00d8a4071628a88465f13d2e860ccd87c3a85b9e
Author: Miklos Vajna <vmik...@suse.cz>
Date:   Tue Jul 9 09:51:53 2013 +0200

    DocxAttributeOutput::FormatSurround: missing break
    
    Change-Id: I8d767c2d92b4d5ca77e83565527b2bd1e29091ec

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index f592e27..6bd05a4 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -4678,14 +4678,17 @@ void DocxAttributeOutput::FormatSurround( const 
SwFmtSurround& rSurround )
             case SURROUND_IDEAL:
                 sType = "square";
                 sSide = "largest";
+                break;
             case SURROUND_LEFT:
                 sType = "square";
                 sSide = "left";
+                break;
             case SURROUND_RIGHT:
                 sType = "square";
                 sSide = "right";
                 break;
             case SURROUND_THROUGHT:
+                /* empty type and side means throught */
             default:
                 break;
         }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to