diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 12:48:18 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 12:48:18 +0000 |
commit | c52d4d9a1048ee58769818296cd88bccb30950d7 (patch) | |
tree | 80115ad2b4cdbb402369ac6a20347fafa19a1a9e /basebmp/test/bmpdemo.cxx | |
parent | bcd85274626695b2c07580c0f03e4b862d5b45c0 (diff) |
INTEGRATION: CWS sb59 (1.12.4); FILE MERGED
2006/08/30 22:52:05 thb 1.12.4.1: #i69122# Made basebmp compile warning-free
Diffstat (limited to 'basebmp/test/bmpdemo.cxx')
-rw-r--r-- | basebmp/test/bmpdemo.cxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/basebmp/test/bmpdemo.cxx b/basebmp/test/bmpdemo.cxx index 7c472e0b972d..9ca80b67d77d 100644 --- a/basebmp/test/bmpdemo.cxx +++ b/basebmp/test/bmpdemo.cxx @@ -4,9 +4,9 @@ * * $RCSfile: bmpdemo.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: thb $ $Date: 2006-07-27 11:35:32 $ + * last change: $Author: obo $ $Date: 2006-10-12 13:48:18 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -76,7 +76,6 @@ #include <vigra/metaprogramming.hxx> #include <vigra/static_assert.hxx> -#include <vigra/resizeimage.hxx> #include <vigra/basicimageview.hxx> #include <boost/static_assert.hpp> @@ -988,7 +987,7 @@ class TestWindow : public Dialog Show(); } virtual ~TestWindow() {} - virtual void MouseButtonUp( const MouseEvent& rMEvt ) + virtual void MouseButtonUp( const MouseEvent& /*rMEvt*/ ) { //TODO: do something cool EndDialog(); @@ -1018,7 +1017,7 @@ static basegfx::B2IPoint project( const basegfx::B2IPoint& rPoint ) double z2 = z1; //return basegfx::B2IPoint( (sal_Int32)3*x2, (sal_Int32)3*z2 ); - return basegfx::B2IPoint( (sal_Int32)6*x2, (sal_Int32)6*z2 ); + return basegfx::B2IPoint( (sal_Int32)(6*x2), (sal_Int32)(6*z2) ); } static basebmp::Color approachColor( const basebmp::Color& rFrom, const basebmp::Color& rTo ) @@ -1074,7 +1073,7 @@ static basebmp::Color approachColor( const basebmp::Color& rFrom, const basebmp: -void TestWindow::Paint( const Rectangle& rRect ) +void TestWindow::Paint( const Rectangle& /*rRect*/ ) { basegfx::B2ISize aTestSize(1000,1000); basebmp::BitmapDeviceSharedPtr pDevice( basebmp::createBitmapDevice( aTestSize, |