summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2011-01-25 20:59:03 +0200
committerTor Lillqvist <tlillqvist@novell.com>2011-01-25 21:05:05 +0200
commit7dd524d18060327372f4f0201b4339fd68333ada (patch)
tree17c6c4926eca32b4cc4f9f18ecdaf595ea6fe4ac /lotuswordpro
parentb85ec1b3368d9f7fb195201dfd793d2860446a80 (diff)
ULONG is not unsigned long
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/tocread.cxx2
-rw-r--r--lotuswordpro/source/filter/utbenvs.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/tocread.cxx b/lotuswordpro/source/filter/tocread.cxx
index 6eb740020583..d65c7b695a49 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 81da609b2264..7cd37efa8058 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);