diff options
author | Frank Schönheit <fs@openoffice.org> | 2002-01-08 12:43:32 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2002-01-08 12:43:32 +0000 |
commit | e7403fdf90f494db5fec5895c0050cdce28965b0 (patch) | |
tree | 545340130aa7fd6d6bc367ce99b773d66946c572 /toolkit | |
parent | 792f0fd1a2e58a8ddc841687d01ba2a3ac92ca96 (diff) |
#96008# DialogModel: override dispose / DialogControl: override removingControl/addingControl
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/inc/toolkit/controls/unocontrols.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/toolkit/inc/toolkit/controls/unocontrols.hxx b/toolkit/inc/toolkit/controls/unocontrols.hxx index bbffb6ade909..ec429b2e934e 100644 --- a/toolkit/inc/toolkit/controls/unocontrols.hxx +++ b/toolkit/inc/toolkit/controls/unocontrols.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unocontrols.hxx,v $ * - * $Revision: 1.22 $ + * $Revision: 1.23 $ * - * last change: $Author: mt $ $Date: 2001-12-06 16:00:28 $ + * last change: $Author: fs $ $Date: 2002-01-08 13:43:32 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -226,6 +226,9 @@ public: // ::com::sun::star::io::XPersistObject ::rtl::OUString SAL_CALL getServiceName() throw(::com::sun::star::uno::RuntimeException); + // XComponent + void SAL_CALL dispose( ) throw(::com::sun::star::uno::RuntimeException); + // XServiceInfo DECLIMPL_SERVICEINFO( UnoControlDialogModel, ::rtl::OUString::createFromAscii( szServiceName2_UnoControlDialogModel ) ) }; @@ -293,6 +296,10 @@ public: // ::com::sun::star::lang::XServiceInfo DECLIMPL_SERVICEINFO( UnoDialogControl, ::rtl::OUString::createFromAscii( szServiceName2_UnoControlDialog ) ) + +protected: + virtual void removingControl( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl >& _rxControl ); + virtual void addingControl( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl >& _rxControl ); }; |