summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/wall.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2006-07-13 09:24:37 +0000
committerOliver Bolte <obo@openoffice.org>2006-07-13 09:24:37 +0000
commit4b35ab6458fe637bd1c4de87debc44d418c9c68a (patch)
treee5524b01cadabda0c147525a3ffbf7c2ce92465a /vcl/source/gdi/wall.cxx
parent052f9e8bcd2e6f8823bfac52d3da1386ee1c54bd (diff)
INTEGRATION: CWS cowfixes01 (1.4.172); FILE MERGED
2006/03/17 16:49:09 thb 1.4.172.1: #128078# Upping refcount bitsize to 32 bit (we're experiencing refcount overflows for some hardcore bugdocs)
Diffstat (limited to 'vcl/source/gdi/wall.cxx')
-rw-r--r--vcl/source/gdi/wall.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/wall.cxx b/vcl/source/gdi/wall.cxx
index 74dd0a9f4903..d8a25f4d9d72 100644
--- a/vcl/source/gdi/wall.cxx
+++ b/vcl/source/gdi/wall.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: wall.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 12:12:49 $
+ * last change: $Author: obo $ $Date: 2006-07-13 10:24:37 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -248,7 +248,7 @@ Wallpaper::Wallpaper( const Wallpaper& rWallpaper )
{
DBG_CTOR( Wallpaper, NULL );
DBG_CHKOBJ( &rWallpaper, Wallpaper, NULL );
- DBG_ASSERT( rWallpaper.mpImplWallpaper->mnRefCount < 0xFFFE, "Wallpaper: RefCount overflow" );
+ DBG_ASSERT( rWallpaper.mpImplWallpaper->mnRefCount < 0xFFFFFFFE, "Wallpaper: RefCount overflow" );
// Instance Daten uebernehmen und Referenzcounter erhoehen
mpImplWallpaper = rWallpaper.mpImplWallpaper;
@@ -585,7 +585,7 @@ Wallpaper& Wallpaper::operator=( const Wallpaper& rWallpaper )
{
DBG_CHKTHIS( Wallpaper, NULL );
DBG_CHKOBJ( &rWallpaper, Wallpaper, NULL );
- DBG_ASSERT( rWallpaper.mpImplWallpaper->mnRefCount < 0xFFFE, "Wallpaper: RefCount overflow" );
+ DBG_ASSERT( rWallpaper.mpImplWallpaper->mnRefCount < 0xFFFFFFFE, "Wallpaper: RefCount overflow" );
// Zuerst Referenzcounter erhoehen, damit man sich selbst zuweisen kann
if ( rWallpaper.mpImplWallpaper->mnRefCount )