summaryrefslogtreecommitdiff
path: root/idl/source/cmptools/lex.cxx
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-13 09:32:03 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-13 09:32:03 +0100
commitd1b478f18dee26565d638054f54fabd5ac87c346 (patch)
tree3bc243bece2356bf97450ab0eeaf81fd3f5e6ce5 /idl/source/cmptools/lex.cxx
parent7afd69a40182db58aef59502f78705ffaffd19c6 (diff)
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in idl
Diffstat (limited to 'idl/source/cmptools/lex.cxx')
-rwxr-xr-xidl/source/cmptools/lex.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx
index 98c835a95065..24991489841c 100755
--- a/idl/source/cmptools/lex.cxx
+++ b/idl/source/cmptools/lex.cxx
@@ -284,9 +284,9 @@ int SvTokenStream::GetNextChar()
|*
|* Beschreibung
*************************************************************************/
-sal_uIntPtr SvTokenStream::GetNumber()
+sal_uLong SvTokenStream::GetNumber()
{
- sal_uIntPtr l = 0;
+ sal_uLong l = 0;
short nLog = 10;
if( '0' == c )
@@ -345,8 +345,8 @@ sal_Bool SvTokenStream::MakeToken( SvToken & rToken )
}
while( 0 == c && !IsEof() && ( SVSTREAM_OK == rInStream.GetError() ) );
- sal_uIntPtr nLastLine = nLine;
- sal_uIntPtr nLastColumn = nColumn;
+ sal_uLong nLastLine = nLine;
+ sal_uLong nLastColumn = nColumn;
// Kommentar
if( '/' == c )
{