diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-17 13:21:38 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-17 13:21:38 +0000 |
commit | c7e4e35bc3cded8a6028e10f8560d2f95bbfe5dc (patch) | |
tree | 2257c03c2daeac04861a53db38079e1802008036 | |
parent | f86c2e710ee107883acfe63daea45630d20051ca (diff) |
INTEGRATION: CWS presfixes12 (1.4.18); FILE MERGED
2007/03/01 13:45:35 thb 1.4.18.1: #i37778# Made compositing mode operational (to e.g. clear a surface to transparent); made cairocanvas compile warning-free under gcc4.1
-rw-r--r-- | canvas/source/cairo/cairo_spritecanvas.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/canvas/source/cairo/cairo_spritecanvas.cxx b/canvas/source/cairo/cairo_spritecanvas.cxx index 8c810b4740ce..40f112d2be08 100644 --- a/canvas/source/cairo/cairo_spritecanvas.cxx +++ b/canvas/source/cairo/cairo_spritecanvas.cxx @@ -4,9 +4,9 @@ * * $RCSfile: cairo_spritecanvas.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kz $ $Date: 2006-12-13 14:43:15 $ + * last change: $Author: obo $ $Date: 2007-07-17 14:21:38 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -68,8 +68,8 @@ namespace cairocanvas SpriteCanvas::SpriteCanvas( const uno::Sequence< uno::Any >& aArguments, const uno::Reference< uno::XComponentContext >& rxContext ) : mxComponentContext( rxContext ), - mpBackgroundCairo( NULL ), - mpBackgroundSurface( NULL ) + mpBackgroundSurface( NULL ), + mpBackgroundCairo( NULL ) { // #i64742# Only call initialize when not in probe mode if( aArguments.getLength() != 0 ) @@ -221,7 +221,7 @@ namespace cairocanvas return maDeviceHelper.getSizePixel(); } - void SpriteCanvas::setSizePixel( const ::basegfx::B2ISize& rSize ) + void SpriteCanvas::setSizePixel( const ::basegfx::B2ISize& /*rSize*/ ) { if( mpBackgroundSurface ) { |