summaryrefslogtreecommitdiff
path: root/idl/inc/hash.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/inc/hash.hxx')
-rwxr-xr-xidl/inc/hash.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx
index 4e25ebd98ca9..ec97a12a8fce 100755
--- a/idl/inc/hash.hxx
+++ b/idl/inc/hash.hxx
@@ -63,7 +63,7 @@ class SvStringHashEntry : public SvRefBase
friend class SvStringHashTable;
ByteString aName;
sal_uInt32 nHashId;
- sal_uIntPtr nValue;
+ sal_uLong nValue;
sal_Bool bHasId;
public:
SvStringHashEntry() : bHasId( sal_False ) {;}
@@ -78,8 +78,8 @@ public:
sal_Bool HasId() const { return bHasId; }
sal_uInt32 GetId() const { return nHashId; }
- void SetValue( sal_uIntPtr n ) { nValue = n; }
- sal_uIntPtr GetValue() const { return nValue; }
+ void SetValue( sal_uLong n ) { nValue = n; }
+ sal_uLong GetValue() const { return nValue; }
sal_Bool operator == ( const SvStringHashEntry & rRef )
{ return nHashId == rRef.nHashId; }