summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-25 10:15:03 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-25 10:15:03 +0000
commit9e84c2359ff0983e0a0688df830151956f03d739 (patch)
treeef68d7928d5c89633c82ae2ebefd89ac8e6da9ca /basic
parentdb031864295b2b6dc5c2b63e7a3b760eaf8492a1 (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.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/inc/basic/sbxvar.hxx b/basic/inc/basic/sbxvar.hxx
index adc0049981..d84b885a11 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;