diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-26 09:14:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-28 08:44:41 +0100 |
commit | 6694e10a230d871a78f27b035d3a7a856cf622dd (patch) | |
tree | 41c1be27ae5bb8872f3db7e4e636440c691b9e58 /canvas | |
parent | 6adbf1322b7eefa753e680e58b17fa32f67ccef9 (diff) |
-Werror,-Wreorder
Change-Id: I27eb5c497985267dd00b5be2fb3c17f8d79745cf
Diffstat (limited to 'canvas')
-rw-r--r-- | canvas/source/directx/dx_surfacebitmap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/directx/dx_surfacebitmap.cxx b/canvas/source/directx/dx_surfacebitmap.cxx index d69a4ea02bad..13ce06f1cc67 100644 --- a/canvas/source/directx/dx_surfacebitmap.cxx +++ b/canvas/source/directx/dx_surfacebitmap.cxx @@ -47,8 +47,8 @@ namespace dxcanvas public: DXColorBuffer( const COMReference<surface_type>& rSurface, const ::basegfx::B2IVector& rSize ) : - mpSurface(rSurface), maSize(rSize), + mpSurface(rSurface), mbAlpha(false) { } @@ -113,8 +113,8 @@ namespace dxcanvas GDIColorBuffer( const BitmapSharedPtr& rSurface, const ::basegfx::B2IVector& rSize ) : - mpGDIPlusBitmap(rSurface), maSize(rSize), + mpGDIPlusBitmap(rSurface), mbAlpha(true) { } |