diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-15 10:03:53 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-15 10:05:03 +0200 |
commit | ad0c5e6c663642c1e4b212e4e6a38ebfe8c3e0a7 (patch) | |
tree | 6176009e3c65a6a1ce392ca4c4a9eccea3c3517c /include/vcl/outdev.hxx | |
parent | d93915b2aeabbde90b7eb539116b9be49e0d1a5c (diff) |
convert META_*_ACTION constants to scoped enum
Change-Id: I8ecfbfecd765a35fafcbcc5452b0d04a89be2459
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r-- | include/vcl/outdev.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index a5673eae558a..3d1b0dbaa9a2 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -1318,7 +1318,7 @@ public: const Point& rSrcPtPixel, const Size& rSecSizePixel, const Bitmap& rBitmap, - sal_uLong nAction = META_BMPSCALEPART_ACTION) + MetaActionType nAction = MetaActionType::BMPSCALEPART) */ void DrawBitmap( const Point& rDestPt, @@ -1331,7 +1331,7 @@ public: const Point& rSrcPtPixel, const Size& rSecSizePixel, const Bitmap& rBitmap, - sal_uLong nAction = META_BMPSCALEPART_ACTION) + MetaActionType nAction = MetaActionType::BMPSCALEPART) */ void DrawBitmap( const Point& rDestPt, @@ -1344,7 +1344,7 @@ public: const Point& rSrcPtPixel, const Size& rSrcSizePixel, const Bitmap& rBitmap, - sal_uLong nAction = META_BMPSCALEPART_ACTION ); + MetaActionType nAction = MetaActionType::BMPSCALEPART ); /** @overload void DrawBitmapEx( @@ -1353,7 +1353,7 @@ public: const Point& rSrcPtPixel, const Size& rSecSizePixel, const BitmapEx& rBitmapEx, - sal_uLong nAction = META_BMPEXSCALEPART_ACTION) + MetaActionType nAction = MetaActionType::BMPEXSCALEPART) */ void DrawBitmapEx( const Point& rDestPt, @@ -1367,7 +1367,7 @@ public: const Point& rSrcPtPixel, const Size& rSecSizePixel, const BitmapEx& rBitmapEx, - sal_uLong nAction = META_BMPEXSCALEPART_ACTION) + MetaActionType nAction = MetaActionType::BMPEXSCALEPART) */ void DrawBitmapEx( const Point& rDestPt, @@ -1380,7 +1380,7 @@ public: const Point& rSrcPtPixel, const Size& rSrcSizePixel, const BitmapEx& rBitmapEx, - sal_uLong nAction = META_BMPEXSCALEPART_ACTION ); + MetaActionType nAction = MetaActionType::BMPEXSCALEPART ); /** @overload virtual void DrawImage( @@ -1603,7 +1603,7 @@ public: void DrawMask( const Point& rDestPt, const Size& rDestSize, const Point& rSrcPtPixel, const Size& rSrcSizePixel, const Bitmap& rBitmap, const Color& rMaskColor, - sal_uLong nAction ); + MetaActionType nAction ); protected: |