summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-06-17 11:45:43 +0000
committerRüdiger Timm <rt@openoffice.org>2004-06-17 11:45:43 +0000
commiteac7a50024bc55de09f5f81985c054d77fed1463 (patch)
tree16b9e8503dc0f1714627754bb32a6c8d195d9c71 /cppu
parent1b4cfbea4a103887fa65b0b66a6cac0c8113619e (diff)
INTEGRATION: CWS ooo64bit01 (1.9.72); FILE MERGED
2004/05/01 22:26:31 svesik 1.9.72.2: RESYNC: (1.9-1.10); FILE MERGED 2004/03/16 23:54:05 fa 1.9.72.1: Merge cws_srx644_port64bit, other misc fixes
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/threadpool/threadpool.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppu/source/threadpool/threadpool.cxx b/cppu/source/threadpool/threadpool.cxx
index 80496d41e86c..7a84a904f098 100644
--- a/cppu/source/threadpool/threadpool.cxx
+++ b/cppu/source/threadpool/threadpool.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: threadpool.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: svesik $ $Date: 2004-04-21 12:57:23 $
+ * last change: $Author: rt $ $Date: 2004-06-17 12:45:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -415,7 +415,7 @@ using namespace cppu_threadpool;
struct uno_ThreadPool_Equal
{
- sal_Int32 operator () ( const uno_ThreadPool &a , const uno_ThreadPool &b ) const
+ sal_Bool operator () ( const uno_ThreadPool &a , const uno_ThreadPool &b ) const
{
return a == b;
}
@@ -423,9 +423,9 @@ struct uno_ThreadPool_Equal
struct uno_ThreadPool_Hash
{
- sal_Int32 operator () ( const uno_ThreadPool &a ) const
+ sal_Size operator () ( const uno_ThreadPool &a ) const
{
- return (sal_Int32) a;
+ return (sal_Size) a;
}
};