summaryrefslogtreecommitdiff
path: root/pyuno/inc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2005-12-28 16:32:37 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2005-12-28 16:32:37 +0000
commit7d1a04d30d0b1bf65000490d1c236cbf998a1571 (patch)
tree0d009e0ca58d7509a00cdb88b3d5c86057542fc2 /pyuno/inc
parent1ed119cef9a3e6a625e18588c34ec70d2ffef269 (diff)
INTEGRATION: CWS pj43 (1.3.64); FILE MERGED
2005/12/05 08:22:21 kendy 1.3.64.1: #i58332# int -> sal_IntPtr fix for 64bit in Hash.
Diffstat (limited to 'pyuno/inc')
-rw-r--r--pyuno/inc/pyuno/pyuno.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/inc/pyuno/pyuno.hxx b/pyuno/inc/pyuno/pyuno.hxx
index 840a7ccd1ea5..f53c6983100d 100644
--- a/pyuno/inc/pyuno/pyuno.hxx
+++ b/pyuno/inc/pyuno/pyuno.hxx
@@ -124,7 +124,7 @@ public:
struct Hash
{
- int operator () ( const PyRef &r) const { return (int) r.get(); }
+ sal_IntPtr operator () ( const PyRef &r) const { return sal_IntPtr( r.get() ); }
};
};