diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-07-12 12:25:39 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-07-12 14:41:35 +0200 |
commit | d8dbf1b5dbfa0db2d765063a1d848d031835398a (patch) | |
tree | 0afe6c5fed33be4f42d61c36e92afc697a2e3eba /basebmp/test/cliptest.cxx | |
parent | b00a99e4af0cf47642a139778a230cc61d1347d9 (diff) |
Turn basebmp::Format into a proper enum
Change-Id: I4067c5039c7b5c74a1c144721dd7260de54dd2bf
Diffstat (limited to 'basebmp/test/cliptest.cxx')
-rw-r--r-- | basebmp/test/cliptest.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
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; |