summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/raster/bzpixelraster.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/inc/basegfx/raster/bzpixelraster.hxx')
-rw-r--r--basegfx/inc/basegfx/raster/bzpixelraster.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basegfx/inc/basegfx/raster/bzpixelraster.hxx b/basegfx/inc/basegfx/raster/bzpixelraster.hxx
index 9e3cd6db36f1..06b2d41e9cc8 100644
--- a/basegfx/inc/basegfx/raster/bzpixelraster.hxx
+++ b/basegfx/inc/basegfx/raster/bzpixelraster.hxx
@@ -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
@@ -43,7 +43,7 @@ namespace basegfx
{
protected:
// additionally, host a ZBuffer
- sal_uInt16* mpZBuffer;
+ sal_uInt16* mpZBuffer;
public:
// reset
@@ -55,7 +55,7 @@ namespace basegfx
// constructor/destructor
BZPixelRaster(sal_uInt32 nWidth, sal_uInt32 nHeight)
- : BPixelRaster(nWidth, nHeight),
+ : BPixelRaster(nWidth, nHeight),
mpZBuffer(new sal_uInt16[mnCount])
{
rtl_zeroMemory(mpZBuffer, sizeof(sal_uInt16) * mnCount);
@@ -70,7 +70,7 @@ namespace basegfx
const sal_uInt16& getZ(sal_uInt32 nIndex) const
{
#ifdef DBG_UTIL
- if(nIndex >= mnCount)
+ if(nIndex >= mnCount)
{
OSL_ENSURE(false, "getZ: Access out of range (!)");
return mpZBuffer[0L];
@@ -83,7 +83,7 @@ namespace basegfx
sal_uInt16& getZ(sal_uInt32 nIndex)
{
#ifdef DBG_UTIL
- if(nIndex >= mnCount)
+ if(nIndex >= mnCount)
{
OSL_ENSURE(false, "getZ: Access out of range (!)");
return mpZBuffer[0L];