diff options
author | Thorsten Behrens <thb@openoffice.org> | 2006-06-07 13:27:36 +0000 |
---|---|---|
committer | Thorsten Behrens <thb@openoffice.org> | 2006-06-07 13:27:36 +0000 |
commit | 4999aa5c72de27ffd28944a2f56d68933ce1ee52 (patch) | |
tree | 2dd7c12c96b8cc9e33e5893e0b46878d1223fb83 /basebmp/source/debug.cxx | |
parent | 0ef3a9bf3418c03f350df5f91c9c623018c715cb (diff) |
#i65904# Finished xor and mask support; corrected Color handling
Diffstat (limited to 'basebmp/source/debug.cxx')
-rw-r--r-- | basebmp/source/debug.cxx | 6 |
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; } } |