diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-05-11 15:53:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-05-12 19:34:14 +0200 |
commit | 05d3a1899eb50202fd3929b702bae1003b5610be (patch) | |
tree | ba2acb1ed6802f49ea618746e95d9017dbe8372f /include | |
parent | cffc5a04661fc0a84dff9fa5da954236d88a8b38 (diff) |
tdf#75280 replace uses of sal_uLong
those vars get their type from SvStream which uses sal_uInt64
Change-Id: Ia356699bb0f5e9787ae6f02e52e0b00cc2f817b1
Reviewed-on: https://gerrit.libreoffice.org/37547
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/imap.hxx | 4 | ||||
-rw-r--r-- | include/svtools/svparser.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/imap.hxx b/include/svtools/imap.hxx index ecb5b09edfc1..0b30c6183596 100644 --- a/include/svtools/imap.hxx +++ b/include/svtools/imap.hxx @@ -118,8 +118,8 @@ public: class IMapCompat { SvStream* pRWStm; - sal_uLong nCompatPos; - sal_uLong nTotalSize; + sal_uInt64 nCompatPos; + sal_uInt64 nTotalSize; StreamMode nStmMode; IMapCompat( const IMapCompat& ) = delete; diff --git a/include/svtools/svparser.hxx b/include/svtools/svparser.hxx index 136eb3a42573..2faa184d7643 100644 --- a/include/svtools/svparser.hxx +++ b/include/svtools/svparser.hxx @@ -60,7 +60,7 @@ protected: rtl_TextEncoding eSrcEnc; // Source encoding - sal_uLong nNextChPos; + sal_uInt64 nNextChPos; sal_uInt32 nNextCh; // current character codepoint in UTF32 for the "lex" bool bUCS2BSrcEnc : 1; // or as big-endian UCS2 |