summaryrefslogtreecommitdiff
path: root/sfx2/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-11-12 11:09:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-11-12 12:25:20 +0000
commitc24df3e0904cdf8aa289db435ad3e6dc8c25a437 (patch)
tree139c9a5d97660a8108f1734f6b186f9ffc5cd59d /sfx2/inc
parent95f4ec094fdd0e06626ac4f7952309c18877c3e9 (diff)
sal_uIntPtr->sal_uInt32 for BitSet
because this ancient horror expects a 32bit type here Change-Id: Icf8b775ea67afa0ead559a55b8c335ad1afc4010
Diffstat (limited to 'sfx2/inc')
-rw-r--r--sfx2/inc/bitset.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/inc/bitset.hxx b/sfx2/inc/bitset.hxx
index fdc17e14bb40..e8847462ef03 100644
--- a/sfx2/inc/bitset.hxx
+++ b/sfx2/inc/bitset.hxx
@@ -25,11 +25,11 @@ private:
void CopyFrom( const BitSet& rSet );
sal_uInt16 nBlocks;
sal_uInt16 nCount;
- sal_uIntPtr* pBitmap;
+ sal_uInt32* pBitmap;
public:
BitSet operator<<( sal_uInt16 nOffset ) const;
BitSet operator>>( sal_uInt16 nOffset ) const;
- static sal_uInt16 CountBits( sal_uIntPtr nBits );
+ static sal_uInt16 CountBits(sal_uInt32 nBits);
bool operator!() const;
BitSet();
BitSet( const BitSet& rOrig );