summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-06-17 12:28:50 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-06-17 12:28:50 +0000
commite45abcf5cee922ba118eeda9ad24cd7c7278f1c9 (patch)
tree118a74c24edc5ffe74da5b69c502c3225394271e /sal
parentf5c02dc128c88929d9c459a6148d2186308d4576 (diff)
INTEGRATION: CWS ooo64bit01 (1.3.42); FILE MERGED
2004/03/16 23:54:14 fa 1.3.42.1: Merge cws_srx644_port64bit, other misc fixes
Diffstat (limited to 'sal')
-rw-r--r--sal/rtl/source/uuid.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sal/rtl/source/uuid.cxx b/sal/rtl/source/uuid.cxx
index 0af96d6ecee2..c05b1805e96f 100644
--- a/sal/rtl/source/uuid.cxx
+++ b/sal/rtl/source/uuid.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: uuid.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2003-12-01 16:10:27 $
+ * last change: $Author: rt $ $Date: 2004-06-17 13:28:50 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -179,14 +179,14 @@ public:
UuidRandomPoolHolder() : pool( rtl_random_createPool() ) {}
~UuidRandomPoolHolder();
- rtlRandomError addBytes( const void *Buffer,sal_uInt32 Bytes )
+ rtlRandomError addBytes( const void *Buffer, sal_Size Bytes )
{
return rtl_random_addBytes( pool, Buffer, Bytes );
}
- rtlRandomError getBytes( void *Buffer, sal_uInt32 Bytes )
+ rtlRandomError getBytes( void *Buffer, sal_Size Bytes )
{
- return rtl_random_getBytes( pool, Buffer , Bytes );
+ return rtl_random_getBytes( pool, Buffer, Bytes );
}
};