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

David Ostrovsky david at ostrovsky.org
Tue Dec 2 23:57:35 PST 2014


 lotuswordpro/source/filter/tocread.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5f1de30c6373ae41480aad13e49876bfac8a2156
Author: David Ostrovsky <david at ostrovsky.org>
Date:   Wed Dec 3 07:51:08 2014 +0100

    Fix Cannot convert unsigned long* in sal_uLong*
    
    Change-Id: I7e44ea91f1202d70ddc4f16aed5890f14f2b2f64
    Reviewed-on: https://gerrit.libreoffice.org/13287
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
    Tested-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/lotuswordpro/source/filter/tocread.cxx b/lotuswordpro/source/filter/tocread.cxx
index bab3006..fe45eb0 100644
--- a/lotuswordpro/source/filter/tocread.cxx
+++ b/lotuswordpro/source/filter/tocread.cxx
@@ -67,7 +67,7 @@ CBenTOCReader::ReadLabelAndTOC()
     if ((Err = ReadLabel(&TOCOffset, &cTOCSize)) != BenErr_OK)
         return Err;
 
-    unsigned long nLength;
+    sal_uLong nLength;
     if ((Err = cpContainer->GetSize(&nLength)) != BenErr_OK)
         return Err;
 


More information about the Libreoffice-commits mailing list