diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-17 14:46:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-18 08:35:34 +0200 |
commit | 0d62716f67b6269448eeae1f012f9512b503f390 (patch) | |
tree | b390a03fed77b2bee5045f27d0609df1b863d92f /include/svl/inethist.hxx | |
parent | f43db673558a1139fba783973c87de9b79033425 (diff) |
use unique_ptr for pImpl in svl/
Change-Id: Ieef897314ac0f056c0a09a5182ca59800fd58f41
Diffstat (limited to 'include/svl/inethist.hxx')
-rw-r--r-- | include/svl/inethist.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/svl/inethist.hxx b/include/svl/inethist.hxx index 90a12bbb70fd..2a03d3b90d91 100644 --- a/include/svl/inethist.hxx +++ b/include/svl/inethist.hxx @@ -23,6 +23,7 @@ #include <svl/hint.hxx> #include <svl/svldllapi.h> #include <tools/urlobj.hxx> +#include <memory> class INetURLHistory_Impl; class SVL_DLLPUBLIC INetURLHistory : public SfxBroadcaster @@ -35,7 +36,7 @@ class SVL_DLLPUBLIC INetURLHistory : public SfxBroadcaster /** Representation. */ - INetURLHistory_Impl *m_pImpl; + std::unique_ptr<INetURLHistory_Impl> m_pImpl; /** Construction/Destruction. */ |