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.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/richtext/featuredispatcher.hxx b/forms/source/richtext/featuredispatcher.hxx
index feba00d5bfb2..5c863f10f8eb 100644
--- a/forms/source/richtext/featuredispatcher.hxx
+++ b/forms/source/richtext/featuredispatcher.hxx
@@ -21,7 +21,7 @@
#include <com/sun/star/frame/XDispatch.hpp>
#include <com/sun/star/lang/DisposedException.hpp>
-#include <comphelper/interfacecontainer2.hxx>
+#include <comphelper/interfacecontainer3.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/basemutex.hxx>
@@ -38,7 +38,7 @@ namespace frm
{
private:
css::util::URL m_aFeatureURL;
- ::comphelper::OInterfaceContainerHelper2 m_aStatusListeners;
+ ::comphelper::OInterfaceContainerHelper3<css::frame::XStatusListener> m_aStatusListeners;
EditView* m_pEditView;
bool m_bDisposed;
@@ -48,12 +48,12 @@ namespace frm
protected:
const css::util::URL& getFeatureURL() const { return m_aFeatureURL; }
- ::comphelper::OInterfaceContainerHelper2& getStatusListeners() { return m_aStatusListeners; }
+ ::comphelper::OInterfaceContainerHelper3<css::frame::XStatusListener>& getStatusListeners() { return m_aStatusListeners; }
bool isDisposed() const { return m_bDisposed; }
void checkDisposed() const { if ( isDisposed() ) throw css::lang::DisposedException(); }
protected:
- ORichTextFeatureDispatcher( EditView& _rView, const css::util::URL& _rURL );
+ ORichTextFeatureDispatcher( EditView& _rView, css::util::URL _aURL );
virtual ~ORichTextFeatureDispatcher( ) override;
public: