From d8dbf1b5dbfa0db2d765063a1d848d031835398a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 12 Jul 2013 12:25:39 +0200 Subject: Turn basebmp::Format into a proper enum Change-Id: I4067c5039c7b5c74a1c144721dd7260de54dd2bf --- basebmp/test/cliptest.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'basebmp/test/cliptest.cxx') diff --git a/basebmp/test/cliptest.cxx b/basebmp/test/cliptest.cxx index aa0c15a01483..cc1dbb0ce384 100644 --- a/basebmp/test/cliptest.cxx +++ b/basebmp/test/cliptest.cxx @@ -156,7 +156,7 @@ private: { BitmapDeviceSharedPtr pBmp( createBitmapDevice( rDevice->getSize(), true, - Format::EIGHT_BIT_GREY )); + FORMAT_EIGHT_BIT_GREY )); OUString aSvg( "m 0 0h5v10h5v-5h-10z" ); @@ -190,13 +190,13 @@ public: const basegfx::B2ISize aSize(11,11); mpClipMask = createBitmapDevice( aSize, true, - Format::ONE_BIT_MSB_GREY ); + FORMAT_ONE_BIT_MSB_GREY ); mpDevice1bpp = createBitmapDevice( aSize, true, - Format::ONE_BIT_MSB_PAL ); + FORMAT_ONE_BIT_MSB_PAL ); mpDevice32bpp = createBitmapDevice( aSize, true, - Format::THIRTYTWO_BIT_TC_MASK_BGRA ); + FORMAT_THIRTYTWO_BIT_TC_MASK_BGRA ); OUString aSvg( "m 0 0 h5 l5 5 v5 h-5 l-5-5 z" ); basegfx::B2DPolyPolygon aPoly; -- cgit