[Libreoffice-commits] .: sw/source

Kohei Yoshida kohei at kemper.freedesktop.org
Tue Nov 16 20:42:32 PST 2010


 sw/source/filter/ww8/docxattributeoutput.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit fdead0dab9f8ef4c3057e0329508541092f879fc
Author: Kohei Yoshida <kyoshida at novell.com>
Date:   Tue Nov 16 23:42:05 2010 -0500

    Fixed a build breakage.

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx
index 281368a..f7f3480 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -2521,7 +2521,7 @@ void DocxAttributeOutput::NumberingLevel( BYTE nLevel,
         m_pSerializer->startElementNS( XML_w, XML_tabs, FSEND );
         m_pSerializer->singleElementNS( XML_w, XML_tab,
                 FSNS( XML_w, XML_val ), "num",
-                FSNS( XML_w, XML_pos ), OString::valueOf( nListTabPos ).getStr(),
+                FSNS( XML_w, XML_pos ), OString::valueOf( static_cast<sal_Int32>(nListTabPos) ).getStr(),
                 FSEND );
         m_pSerializer->endElementNS( XML_w, XML_tabs );
     }


More information about the Libreoffice-commits mailing list