diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-07-25 10:15:03 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-07-25 10:15:03 +0000 |
commit | 67f3cc6dc82e8e65b81071f9e322e9dbfac33f3a (patch) | |
tree | e254ffcb3cee711b45fcadd154ee88e3bdf9ab81 /basic | |
parent | e04914469bf7ef264c7117e7310858e76867cf97 (diff) |
INTEGRATION: CWS cmcfixes46 (1.4.22); FILE MERGED
2008/05/26 16:21:55 cmc 1.4.22.1: #i58385# fix up for 64bit
Diffstat (limited to 'basic')
-rw-r--r-- | basic/inc/basic/sbxvar.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/inc/basic/sbxvar.hxx b/basic/inc/basic/sbxvar.hxx index 2a965665a24a..0f3e1d79c5d5 100644 --- a/basic/inc/basic/sbxvar.hxx +++ b/basic/inc/basic/sbxvar.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: sbxvar.hxx,v $ - * $Revision: 1.4 $ + * $Revision: 1.5 $ * * This file is part of OpenOffice.org. * @@ -453,8 +453,8 @@ class SbxVariable : public SbxValue USHORT nHash; // Hash-ID fuer die Suche protected: SbxInfoRef pInfo; // Evtl. angeforderte Infos - UINT32 nUserData; // Benutzerdaten fuer Call() - SbxObject* pParent; // aktuell zugeordnetes Objekt + sal_uIntPtr nUserData; // Benutzerdaten fuer Call() + SbxObject* pParent; // aktuell zugeordnetes Objekt virtual ~SbxVariable(); virtual BOOL LoadData( SvStream&, USHORT ); virtual BOOL StoreData( SvStream& ) const; @@ -474,8 +474,8 @@ public: virtual void SetModified( BOOL ); - UINT32 GetUserData() const { return nUserData; } - void SetUserData( UINT32 n ) { nUserData = n; } + sal_uIntPtr GetUserData() const { return nUserData; } + void SetUserData( sal_uIntPtr n ) { nUserData = n; } virtual SbxDataType GetType() const; virtual SbxClassType GetClass() const; |