summaryrefslogtreecommitdiff
path: root/forms/source/richtext/featuredispatcher.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/richtext/featuredispatcher.hxx')
-rw-r--r--forms/source/richtext/featuredispatcher.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/richtext/featuredispatcher.hxx b/forms/source/richtext/featuredispatcher.hxx
index 794947ff0764..b36a563c9d0f 100644
--- a/forms/source/richtext/featuredispatcher.hxx
+++ b/forms/source/richtext/featuredispatcher.hxx
@@ -22,7 +22,7 @@
#include <com/sun/star/frame/XDispatch.hpp>
#include <com/sun/star/lang/DisposedException.hpp>
-#include <cppuhelper/interfacecontainer.hxx>
+#include <comphelper/interfacecontainer2.hxx>
#include <cppuhelper/implbase.hxx>
#include <comphelper/broadcasthelper.hxx>
@@ -39,7 +39,7 @@ namespace frm
{
private:
css::util::URL m_aFeatureURL;
- ::cppu::OInterfaceContainerHelper m_aStatusListeners;
+ ::comphelper::OInterfaceContainerHelper2 m_aStatusListeners;
EditView* m_pEditView;
bool m_bDisposed;
@@ -49,7 +49,7 @@ namespace frm
protected:
inline const css::util::URL& getFeatureURL() const { return m_aFeatureURL; }
- inline ::cppu::OInterfaceContainerHelper& getStatusListeners() { return m_aStatusListeners; }
+ inline ::comphelper::OInterfaceContainerHelper2& getStatusListeners() { return m_aStatusListeners; }
inline bool isDisposed() const { return m_bDisposed; }
inline void checkDisposed() const { if ( isDisposed() ) throw css::lang::DisposedException(); }