diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-01-12 16:07:04 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-01-12 16:07:04 +0100 |
commit | 0f029bd13462f28ae38bd1371c7c7b42dd992bdc (patch) | |
tree | e5c56d4c12c777eaeeaf145e303e8b6399db0db3 /rsc/inc/rscpar.hxx | |
parent | 1c90aa6d259d8ae21552856c1407ff6f1b3a13a1 (diff) |
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in rsc
Diffstat (limited to 'rsc/inc/rscpar.hxx')
-rw-r--r-- | rsc/inc/rscpar.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/rsc/inc/rscpar.hxx b/rsc/inc/rscpar.hxx index 0f3a3f8c1ad1..952c4670616c 100644 --- a/rsc/inc/rscpar.hxx +++ b/rsc/inc/rscpar.hxx @@ -43,8 +43,8 @@ class RscFileInst sal_uInt32 nErrorPos; // Position des ersten Fehlers sal_Bool bIncLine; // Muss Zeilennummer incrementiert werden sal_uInt32 nLineNo; // Zeile in der Eingabedatei - sal_uIntPtr lFileIndex; // Index auf Eingabedatei - sal_uIntPtr lSrcIndex; // Index auf Basisdatei + sal_uLong lFileIndex; // Index auf Eingabedatei + sal_uLong lSrcIndex; // Index auf Basisdatei FILE * fInputFile; // Eingabedatei char * pInput; // Lesepuffer sal_uInt32 nInputBufLen; // Laenge des Lesepuffers @@ -59,15 +59,15 @@ class RscFileInst public: RscTypCont * pTypCont; void Init(); // ctor initialisieren - RscFileInst( RscTypCont * pTC, sal_uIntPtr lIndexSrc, - sal_uIntPtr lFileIndex, FILE * fFile ); - RscFileInst( RscTypCont * pTC, sal_uIntPtr lIndexSrc, - sal_uIntPtr lFileIndex, const ByteString & ); + RscFileInst( RscTypCont * pTC, sal_uLong lIndexSrc, + sal_uLong lFileIndex, FILE * fFile ); + RscFileInst( RscTypCont * pTC, sal_uLong lIndexSrc, + sal_uLong lFileIndex, const ByteString & ); ~RscFileInst(); sal_Bool IsEof() const { return bEof; } - void SetFileIndex( sal_uIntPtr lFIndex ) { lFileIndex = lFIndex; } - sal_uIntPtr GetFileIndex() { return( lFileIndex ); } - sal_uIntPtr GetSrcIndex() { return( lSrcIndex ); } + void SetFileIndex( sal_uLong lFIndex ) { lFileIndex = lFIndex; } + sal_uLong GetFileIndex() { return( lFileIndex ); } + sal_uLong GetSrcIndex() { return( lSrcIndex ); } void SetLineNo( sal_uInt32 nLine ) { nLineNo = nLine; } sal_uInt32 GetLineNo() { return( nLineNo ); } sal_uInt32 GetScanPos() { return( nScanPos ); } |