summaryrefslogtreecommitdiff
path: root/idl/source/cmptools
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-11-10 15:06:12 +0000
committerRüdiger Timm <rt@openoffice.org>2008-11-10 15:06:12 +0000
commit7e6737cc865d9f0ba44a88b4be0c8460325d7b84 (patch)
tree1a77c19de7eb263e582261883c19c36a2032e9ec /idl/source/cmptools
parent72339a084c6879c8437aee34a1f9daac50d2366e (diff)
CWS-TOOLING: integrate CWS cmcfixes50
2008-11-10 13:31:50 +0100 cmc r263517 : gio doesn't do anything useful for remote stuff wrt info 2008-11-06 00:11:47 +0100 cmc r263359 : #i93436# pile of other 64bit new gcc warnings 2008-11-05 00:39:03 +0100 cmc r263340 : i95856 let a ppc64 vanilla build succeed 2008-11-04 14:00:25 +0100 cmc r263320 : #i93436# useless const 2008-11-04 11:53:10 +0100 cmc r263314 : #i93436# ambiguous 2008-11-04 11:48:05 +0100 cmc r263313 : #i93436# add some braces 2008-11-04 11:29:24 +0100 cmc r263312 : #i93436# ambiguous 2008-11-04 10:53:46 +0100 cmc r263311 :
Diffstat (limited to 'idl/source/cmptools')
-rw-r--r--idl/source/cmptools/hash.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/cmptools/hash.cxx b/idl/source/cmptools/hash.cxx
index d479914d29ca..1cfec1266978 100644
--- a/idl/source/cmptools/hash.cxx
+++ b/idl/source/cmptools/hash.cxx
@@ -122,7 +122,7 @@ BOOL SvHashTable::Test_Insert( const void * pElement, BOOL bInsert,
if( bInsert )
{
- DBG_ASSERT( nMax != nLoop, "Hash table full" )
+ DBG_ASSERT( nMax != nLoop, "Hash table full" );
if( nMax != nLoop )
{
nFill++;
@@ -177,7 +177,7 @@ SvStringHashTable::~SvStringHashTable()
#ifdef DBG_UTIL
while( pPos != pEnd )
{
- DBG_ASSERT( pPos->GetRefCount() == 1, "Reference count != 1" )
+ DBG_ASSERT( pPos->GetRefCount() == 1, "Reference count != 1" );
pPos++;
}
#endif