summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-06-14 02:04:06 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-14 11:18:27 +0000
commit7a60b2f3deaeced4352152525d1bb511a26b42bb (patch)
treef3fc59ba543c1b0d097148aa433661db238d945c /include
parente8c8d824607bdad288680678f259b3e78308bab0 (diff)
tdf#89329: use shared_ptr for pImpl in defaultoptions...
instead of unique_ptr as in commit 7bc1c79c26e52d5196fb36eee5c2f12f12d49ba6 Change-Id: I4e57378a333455b818162c6cc8484be9dcaddb03 Reviewed-on: https://gerrit.libreoffice.org/26236 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/unotools/defaultoptions.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unotools/defaultoptions.hxx b/include/unotools/defaultoptions.hxx
index f4937662d4c2..56761d28fbfa 100644
--- a/include/unotools/defaultoptions.hxx
+++ b/include/unotools/defaultoptions.hxx
@@ -30,7 +30,7 @@ class SvtDefaultOptions_Impl;
class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtDefaultOptions : public utl::detail::Options
{
private:
- std::unique_ptr<SvtDefaultOptions_Impl> pImpl;
+ std::shared_ptr<SvtDefaultOptions_Impl> pImpl;
public: