From 0d62716f67b6269448eeae1f012f9512b503f390 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 17 Nov 2015 14:46:26 +0200 Subject: use unique_ptr for pImpl in svl/ Change-Id: Ieef897314ac0f056c0a09a5182ca59800fd58f41 --- include/svl/SfxBroadcaster.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/svl/SfxBroadcaster.hxx') diff --git a/include/svl/SfxBroadcaster.hxx b/include/svl/SfxBroadcaster.hxx index 97afa702c224..e5fb5e16b96a 100644 --- a/include/svl/SfxBroadcaster.hxx +++ b/include/svl/SfxBroadcaster.hxx @@ -20,6 +20,7 @@ #define INCLUDED_SVL_BRDCST_HXX #include +#include class SfxListener; class SfxHint; @@ -28,7 +29,7 @@ class SfxBroadcasterTest; class SVL_DLLPUBLIC SfxBroadcaster { struct Impl; - Impl* mpImpl; + std::unique_ptr mpImpl; private: void AddListener( SfxListener& rListener ); -- cgit