summaryrefslogtreecommitdiff
path: root/include/unotools/accessiblerelationsethelper.hxx
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-06-04 23:03:57 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-06 07:10:58 +0000
commit353e5ea62ed6a273a3856bd1e3cb4d2380804e83 (patch)
treeb313fa7b2980ace1281370bdf5b0b016766f5fc5 /include/unotools/accessiblerelationsethelper.hxx
parent82407c651ee8b5d8876d4a1f76898de33c69e232 (diff)
tdf#89329: use unique_ptr for pImpl in accessiblerelationsethelper
Change-Id: I29578afa206e869a5b2e6fb42c7f5ebf4a6f2fe8 Reviewed-on: https://gerrit.libreoffice.org/25906 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/unotools/accessiblerelationsethelper.hxx')
-rw-r--r--include/unotools/accessiblerelationsethelper.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unotools/accessiblerelationsethelper.hxx b/include/unotools/accessiblerelationsethelper.hxx
index 538d6cddfb94..f2a9f9793861 100644
--- a/include/unotools/accessiblerelationsethelper.hxx
+++ b/include/unotools/accessiblerelationsethelper.hxx
@@ -30,6 +30,7 @@
#include <osl/mutex.hxx>
#include <cppuhelper/implbase1.hxx>
#include <comphelper/servicehelper.hxx>
+#include <memory>
class AccessibleRelationSetHelperImpl;
@@ -136,7 +137,7 @@ protected:
private:
/// The implementation of this helper interface.
- AccessibleRelationSetHelperImpl* mpHelperImpl;
+ std::unique_ptr<AccessibleRelationSetHelperImpl> mpHelperImpl;
};
}