summaryrefslogtreecommitdiff
path: root/include/editeng/brushitem.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-17 15:32:23 +0200
committerNoel Grandin <noel@peralex.com>2015-11-18 08:35:34 +0200
commit2e9277c05034c157d640c289d59499be9d1ca382 (patch)
treea5cc868d73bf7a2afddd21b3fed86eea75d7a858 /include/editeng/brushitem.hxx
parent032dae364b4853635186b7541e40c71588f9050a (diff)
use unique_ptr for pImpl in editeng/
Change-Id: I43ae9f706db15594b3a0c5cba41436d009588393
Diffstat (limited to 'include/editeng/brushitem.hxx')
-rw-r--r--include/editeng/brushitem.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/editeng/brushitem.hxx b/include/editeng/brushitem.hxx
index 85ca68af1f56..d219c1f6ef50 100644
--- a/include/editeng/brushitem.hxx
+++ b/include/editeng/brushitem.hxx
@@ -23,6 +23,7 @@
#include <vcl/wall.hxx>
#include <tools/link.hxx>
#include <editeng/editengdllapi.h>
+#include <memory>
// class SvxBrushItem ----------------------------------------------------
@@ -46,7 +47,7 @@ class EDITENG_DLLPUBLIC SvxBrushItem : public SfxPoolItem
{
Color aColor;
sal_Int32 nShadingValue;
- SvxBrushItem_Impl* pImpl;
+ std::unique_ptr<SvxBrushItem_Impl> pImpl;
OUString maStrLink;
OUString maStrFilter;
SvxGraphicPosition eGraphicPos;