summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/resultsetbase.hxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetbase.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx b/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
index af6d4a6959ce..9c1a016030dd 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
@@ -20,6 +20,7 @@
#define INCLUDED_XMLHELP_SOURCE_CXXHELP_PROVIDER_RESULTSETBASE_HXX
#include <vector>
+#include <memory>
#include <cppuhelper/weak.hxx>
#include <comphelper/interfacecontainer2.hxx>
#include <com/sun/star/lang/XComponent.hpp>
@@ -390,10 +391,10 @@ namespace chelp {
css::uno::Sequence< css::beans::Property > m_sProperty;
osl::Mutex m_aMutex;
- comphelper::OInterfaceContainerHelper2* m_pDisposeEventListeners;
+ std::unique_ptr<comphelper::OInterfaceContainerHelper2> m_pDisposeEventListeners;
- comphelper::OInterfaceContainerHelper2* m_pRowCountListeners;
- comphelper::OInterfaceContainerHelper2* m_pIsFinalListeners;
+ std::unique_ptr<comphelper::OInterfaceContainerHelper2> m_pRowCountListeners;
+ std::unique_ptr<comphelper::OInterfaceContainerHelper2> m_pIsFinalListeners;
};