Kaydet (Commit) 85453425 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-private-field

Change-Id: Ie14d3b3474b7886add80bd6e223e76fbf964144e
üst 6694e10a
......@@ -48,8 +48,7 @@ namespace dxcanvas
DXColorBuffer( const COMReference<surface_type>& rSurface,
const ::basegfx::B2IVector& rSize ) :
maSize(rSize),
mpSurface(rSurface),
mbAlpha(false)
mpSurface(rSurface)
{
}
......@@ -68,7 +67,6 @@ namespace dxcanvas
::basegfx::B2IVector maSize;
mutable D3DLOCKED_RECT maLockedRect;
mutable COMReference<surface_type> mpSurface;
bool mbAlpha;
};
sal_uInt8* DXColorBuffer::lock() const
......@@ -114,8 +112,7 @@ namespace dxcanvas
GDIColorBuffer( const BitmapSharedPtr& rSurface,
const ::basegfx::B2IVector& rSize ) :
maSize(rSize),
mpGDIPlusBitmap(rSurface),
mbAlpha(true)
mpGDIPlusBitmap(rSurface)
{
}
......@@ -134,7 +131,6 @@ namespace dxcanvas
::basegfx::B2IVector maSize;
mutable Gdiplus::BitmapData aBmpData;
BitmapSharedPtr mpGDIPlusBitmap;
bool mbAlpha;
};
sal_uInt8* GDIColorBuffer::lock() const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment