[Libreoffice-commits] .: sw/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Jan 11 05:52:51 PST 2013


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

New commits:
commit 3527efa7e078ce11ac537d8f8591b159c05e760f
Author: Tor Lillqvist <tml at iki.fi>
Date:   Fri Jan 11 15:43:56 2013 +0200

    Output version number as text, not binary
    
    Change-Id: I1ada5bd38a55fa2815c03260a2465c1908b5019f

diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx
index 80085ed..3edad2a 100644
--- a/sw/source/filter/ww8/rtfexport.cxx
+++ b/sw/source/filter/ww8/rtfexport.cxx
@@ -423,7 +423,7 @@ void RtfExport::WriteInfo()
 #error Minor, micro and patchlevel version numbers must be less than 256
 #endif
 
-    Strm() << (sal_Int32) LIBO_VERSION_ENCODED_IN_32BITS << '}';
+    Strm().WriteNumber((sal_Int32) LIBO_VERSION_ENCODED_IN_32BITS) << '}';
     Strm() << '}';
 }
 


More information about the Libreoffice-commits mailing list