diff options
Diffstat (limited to 'forms/source/component')
-rw-r--r-- | forms/source/component/EditBase.hxx | 10 | ||||
-rw-r--r-- | forms/source/component/clickableimage.hxx | 8 |
2 files changed, 16 insertions, 2 deletions
diff --git a/forms/source/component/EditBase.hxx b/forms/source/component/EditBase.hxx index 8d8325c37d8e..0658490ed7e4 100644 --- a/forms/source/component/EditBase.hxx +++ b/forms/source/component/EditBase.hxx @@ -58,7 +58,15 @@ protected: sal_Int16 getLastReadVersion() const { return m_nLastReadVersion; } public: - DECLARE_DEFAULT_BOUND_XTOR( OEditBaseModel ); + OEditBaseModel( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& _rxFactory, + const OUString& _rUnoControlModelTypeName, + const OUString& _rDefault, + const bool _bSupportExternalBinding, + const bool _bSupportsValidation + ); + DECLARE_DEFAULT_CLONE_CTOR( OEditBaseModel ) + virtual ~OEditBaseModel(); // XPersistObject virtual void SAL_CALL write(const ::com::sun::star::uno::Reference< ::com::sun::star::io::XObjectOutputStream>& _rxOutStream) throw ( ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/forms/source/component/clickableimage.hxx b/forms/source/component/clickableimage.hxx index 9337b3cbe061..7a26a97f8d94 100644 --- a/forms/source/component/clickableimage.hxx +++ b/forms/source/component/clickableimage.hxx @@ -91,7 +91,13 @@ namespace frm inline void setDispatchUrlInternal(bool _bDispatch) { m_bDispatchUrlInternal = _bDispatch; } public: - DECLARE_DEFAULT_XTOR( OClickableImageBaseModel ); + OClickableImageBaseModel( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext>& _rxFactory, + const OUString& _rUnoControlModelTypeName, + const OUString& _rDefault + ); + DECLARE_DEFAULT_CLONE_CTOR( OClickableImageBaseModel ) + virtual ~OClickableImageBaseModel(); // UNO Binding DECLARE_UNO3_AGG_DEFAULTS(OClickableImageBaseModel, OControlModel) |