summaryrefslogtreecommitdiffstats
path: root/basebmp/source/debug.cxx
diff options
context:
space:
mode:
authorThorsten Behrens <thb@openoffice.org>2006-06-07 13:27:36 +0000
committerThorsten Behrens <thb@openoffice.org>2006-06-07 13:27:36 +0000
commit4999aa5c72de27ffd28944a2f56d68933ce1ee52 (patch)
tree2dd7c12c96b8cc9e33e5893e0b46878d1223fb83 /basebmp/source/debug.cxx
parent#i65904# SAl_MAX_UINT8 was right in operator* (diff)
downloadcore-4999aa5c72de27ffd28944a2f56d68933ce1ee52.tar.gz
core-4999aa5c72de27ffd28944a2f56d68933ce1ee52.zip
#i65904# Finished xor and mask support; corrected Color handling
Diffstat (limited to 'basebmp/source/debug.cxx')
-rw-r--r--basebmp/source/debug.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basebmp/source/debug.cxx b/basebmp/source/debug.cxx
index d789f39b1d79..19b799879d0a 100644
--- a/basebmp/source/debug.cxx
+++ b/basebmp/source/debug.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: debug.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: thb $ $Date: 2006-06-02 13:57:25 $
+ * last change: $Author: thb $ $Date: 2006-06-07 14:27:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -131,7 +131,7 @@ namespace basebmp
for( int y=0; y<aSize.getY(); ++y )
{
for( int x=0; x<aSize.getX(); ++x )
- rOutputStream << std::setw(8) << (sal_uInt32)rDevice->getPixel( basegfx::B2IPoint(x,y) ) << " ";
+ rOutputStream << std::setw(8) << (sal_uInt32)rDevice->getPixel( basegfx::B2IPoint(x,y) ).toInt32() << " ";
rOutputStream << std::endl;
}
}