[Libreoffice-commits] .: sw/source

Caolán McNamara caolan at kemper.freedesktop.org
Thu Jul 14 07:35:40 PDT 2011


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

New commits:
commit ad0a10837aa240ab6cd693f9eb4cbb9705315982
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Jul 14 15:20:28 2011 +0100

    If nFib is 0x00D9 or greater, then cQuickSaves MUST be 0xF

diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx
index b0a2912..2a9f8ce 100644
--- a/sw/source/filter/ww8/ww8scan.cxx
+++ b/sw/source/filter/ww8/ww8scan.cxx
@@ -5600,6 +5600,9 @@ WW8Fib::WW8Fib(sal_uInt8 nVer)
         nProduct = 0xc02d;
     }
 
+    //If nFib is 0x00D9 or greater, then cQuickSaves MUST be 0xF
+    cQuickSaves = nFib >= 0x00D9 ? 0xF : 0;
+
     // --> #i90932# 
     lid = 0x409; // LANGUAGE_ENGLISH_US
 


More information about the Libreoffice-commits mailing list