summaryrefslogtreecommitdiff
path: root/basebmp/source/debug.cxx
diff options
context:
space:
mode:
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 4e7abb0d613b..37630de1b5b8 100644
--- a/basebmp/source/debug.cxx
+++ b/basebmp/source/debug.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -87,7 +87,7 @@ namespace basebmp
const bool bTopDown( rDevice->isTopDown() );
const sal_Int32 nScanlineFormat( rDevice->getScanlineFormat() );
- rOutputStream
+ rOutputStream
<< "/* basebmp::BitmapDevice content dump */" << std::endl
<< "/* Width = " << aSize.getX() << " */" << std::endl
<< "/* Height = " << aSize.getY() << " */" << std::endl
@@ -99,7 +99,7 @@ namespace basebmp
rOutputStream << std::hex;
for( int y=0; y<aSize.getY(); ++y )
{
- for( int x=0; x<aSize.getX(); ++x )
+ for( int x=0; x<aSize.getX(); ++x )
rOutputStream << std::setw(8) << (sal_uInt32)rDevice->getPixel( basegfx::B2IPoint(x,y) ).toInt32() << " ";
rOutputStream << std::endl;
}