summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-04-07 07:09:46 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-04-07 07:09:46 +0000
commit709bb38a66db8ab2a18c855039d5c724220662b5 (patch)
tree7de894e347387da6155e1a9a80d4e6a67620788e
parent0a34b04e6a0144eee66c366abf72cdafea56b598 (diff)
INTEGRATION: CWS sixtyfour04 (1.6.68); FILE MERGED
2006/03/21 14:26:05 cmc 1.6.68.1: #i63124# make basic 64bit ok
-rw-r--r--basic/source/runtime/dllmgr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/runtime/dllmgr.cxx b/basic/source/runtime/dllmgr.cxx
index f3284a266080..25f7624a897d 100644
--- a/basic/source/runtime/dllmgr.cxx
+++ b/basic/source/runtime/dllmgr.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: dllmgr.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 21:38:33 $
+ * last change: $Author: vg $ $Date: 2006-04-07 08:09:46 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -586,7 +586,7 @@ void* SbiDllMgr::CreateStack( SbxArray* pArgs, USHORT& rSize )
strcpy( pStr, rStr.GetBuffer() ); // #100211# - checked
// ist nicht so sauber, aber wir sparen ein Pointerarray
DBG_ASSERT(sizeof(UINT32)>=sizeof(char*),"Gleich krachts im Basic");
- pVar->SetUserData( (UINT32)pStr );
+ pVar->SetUserData( (sal_uIntPtr)pStr );
*((const char**)pTop) = pStr;
pTop += sizeof( char* );
}
@@ -640,7 +640,7 @@ void* SbiDllMgr::CreateStack( SbxArray* pArgs, USHORT& rSize )
strcpy( pStr, aByteStr.GetBuffer() ); // #100211# - checked
// ist nicht so sauber, aber wir sparen ein Pointerarray
DBG_ASSERT(sizeof(UINT32)>=sizeof(char*),"Gleich krachts im Basic");
- pVar->SetUserData( (UINT32)pStr );
+ pVar->SetUserData( (sal_uIntPtr)pStr );
*((const char**)pTop) = pStr;
pTop += sizeof( char* );
}