[Libreoffice-commits] .: lotuswordpro/source
Tor Lillqvist
tml at kemper.freedesktop.org
Tue Jan 25 11:09:50 PST 2011
lotuswordpro/source/filter/tocread.cxx | 2 +-
lotuswordpro/source/filter/utbenvs.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 20abd99b6e28f6d910bc5a632e0e1ff7b9ae2772
Author: Tor Lillqvist <tlillqvist at novell.com>
Date: Tue Jan 25 20:59:03 2011 +0200
ULONG is not unsigned long
diff --git a/lotuswordpro/source/filter/tocread.cxx b/lotuswordpro/source/filter/tocread.cxx
index 300a510..2c0b740 100644
--- a/lotuswordpro/source/filter/tocread.cxx
+++ b/lotuswordpro/source/filter/tocread.cxx
@@ -132,7 +132,7 @@ CBenTOCReader::SearchForLabel(BenByte * pLabel)
{
BenError Err;
- unsigned long Length;
+ ULONG Length;
if ((Err = cpContainer->GetSize(&Length)) != BenErr_OK)
return Err;
diff --git a/lotuswordpro/source/filter/utbenvs.cxx b/lotuswordpro/source/filter/utbenvs.cxx
index a14e6c3..e498694 100644
--- a/lotuswordpro/source/filter/utbenvs.cxx
+++ b/lotuswordpro/source/filter/utbenvs.cxx
@@ -81,7 +81,7 @@ void LtcUtBenValueStream::GetAmountLeft(ULONG * pAmtLeft)
ULONG LtcUtBenValueStream::GetData( void* pData, ULONG nSize )
{
//unsigned long AmtLeft;
- ULONG AmtRead;
+ unsigned long AmtRead;
//GetAmountLeft(&AmtLeft);
//unsigned long AmtShouldRead = UtMin(nSize, AmtLeft);
More information about the Libreoffice-commits
mailing list