[Libreoffice-commits] core.git: sw/source

Caolán McNamara caolanm at redhat.com
Mon Apr 20 02:50:39 PDT 2015


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

New commits:
commit de4c419c730befb25655811b6582607b8b7bcd4e
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Apr 20 10:47:11 2015 +0100

    fix build
    
    Change-Id: Id9fad922622881d29664d2149b74c98742a4e88d

diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx b/sw/source/filter/ww8/rtfattributeoutput.cxx
index c05aacf..2a18d90 100644
--- a/sw/source/filter/ww8/rtfattributeoutput.cxx
+++ b/sw/source/filter/ww8/rtfattributeoutput.cxx
@@ -2664,7 +2664,7 @@ void RtfAttributeOutput::ParaTabStop(const SvxTabStopItem& rTabStop)
 void RtfAttributeOutput::ParaHyphenZone(const SvxHyphenZoneItem& rHyphenZone)
 {
     m_aStyles.append(OOO_STRING_SVTOOLS_RTF_HYPHPAR);
-    m_aStyles.append(int(rHyphenZone.IsHyphen()));
+    m_aStyles.append(sal_Int32(rHyphenZone.IsHyphen()));
 }
 
 void RtfAttributeOutput::ParaNumRule_Impl(const SwTxtNode* pTxtNd, sal_Int32 nLvl, sal_Int32 nNumId)


More information about the Libreoffice-commits mailing list