summaryrefslogtreecommitdiffstats
path: root/include/vcl/region.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/region.hxx')
-rw-r--r--include/vcl/region.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/region.hxx b/include/vcl/region.hxx
index f32bbe15ac0f..4cbca18af40b 100644
--- a/include/vcl/region.hxx
+++ b/include/vcl/region.hxx
@@ -33,9 +33,6 @@ namespace vcl { class Window; }
class OutputDevice;
class Bitmap;
-typedef std::shared_ptr< RegionBand > RegionBandPtr;
-typedef std::shared_ptr< tools::PolyPolygon > PolyPolygonPtr;
-typedef std::shared_ptr< basegfx::B2DPolyPolygon > B2DPolyPolygonPtr;
typedef std::vector< Rectangle > RectangleVector;
namespace vcl {
@@ -48,9 +45,12 @@ private:
friend class ::Bitmap;
// possible contents
- B2DPolyPolygonPtr mpB2DPolyPolygon;
- PolyPolygonPtr mpPolyPolygon;
- RegionBandPtr mpRegionBand;
+ std::shared_ptr< basegfx::B2DPolyPolygon >
+ mpB2DPolyPolygon;
+ std::shared_ptr< tools::PolyPolygon >
+ mpPolyPolygon;
+ std::shared_ptr< RegionBand >
+ mpRegionBand;
/// bitfield
bool mbIsNull : 1;