[Libreoffice-commits] .: sw/source

Kohei Yoshida kohei at kemper.freedesktop.org
Wed Oct 13 21:16:59 PDT 2010


 sw/source/ui/app/docstyle.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 4b4795423cecd001eb93e934c7f8ffccf38d978d
Author: Kohei Yoshida <kyoshida at novell.com>
Date:   Thu Oct 14 00:16:28 2010 -0400

    Fixed more OSL_ENSURE missing ';'.

diff --git a/sw/source/ui/app/docstyle.cxx b/sw/source/ui/app/docstyle.cxx
index 208e886..fd2ab1e 100644
--- a/sw/source/ui/app/docstyle.cxx
+++ b/sw/source/ui/app/docstyle.cxx
@@ -897,13 +897,13 @@ BOOL   SwDocStyleSheet::SetParent( const String& rStr)
     switch(nFamily)
     {
         case SFX_STYLE_FAMILY_CHAR :
-            OSL_ENSURE( pCharFmt, "SwCharFormat missing!" )
+            OSL_ENSURE( pCharFmt, "SwCharFormat missing!" );
             if( 0 != ( pFmt = pCharFmt ) && rStr.Len() )
                 pParent = lcl_FindCharFmt(rDoc, rStr);
             break;
 
         case SFX_STYLE_FAMILY_PARA :
-            OSL_ENSURE( pColl, "Collektion missing!")
+            OSL_ENSURE( pColl, "Collektion missing!");
             if( 0 != ( pFmt = pColl ) && rStr.Len() )
                 pParent = lcl_FindParaFmt( rDoc, rStr );
             break;


More information about the Libreoffice-commits mailing list