summaryrefslogtreecommitdiffstats
path: root/idl/inc/lex.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/lex.hxx')
-rw-r--r--idl/inc/lex.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idl/inc/lex.hxx b/idl/inc/lex.hxx
index 58728260772c..7ddc3e9ce246 100644
--- a/idl/inc/lex.hxx
+++ b/idl/inc/lex.hxx
@@ -40,7 +40,7 @@ friend class SvTokenStream;
OString aString;
union
{
- sal_uLong nLong;
+ sal_uInt64 nLong;
bool bBool;
char cChar;
SvStringHashEntry * pHash;
@@ -79,7 +79,7 @@ public:
? pHash->GetName()
: aString;
}
- sal_uLong GetNumber() const { return nLong; }
+ sal_uInt64 GetNumber() const { return nLong; }
bool GetBool() const { return bBool; }
char GetChar() const { return cChar; }
@@ -124,7 +124,7 @@ class SvTokenStream
}
void FillTokenList();
- sal_uLong GetNumber();
+ sal_uInt64 GetNumber();
bool MakeToken( SvToken & );
bool IsEof() const { return pInStream->eof(); }
void SetMax()