summaryrefslogtreecommitdiff
path: root/toolkit/inc/toolkit/controls
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2002-01-08 12:43:32 +0000
committerFrank Schönheit <fs@openoffice.org>2002-01-08 12:43:32 +0000
commite7403fdf90f494db5fec5895c0050cdce28965b0 (patch)
tree545340130aa7fd6d6bc367ce99b773d66946c572 /toolkit/inc/toolkit/controls
parent792f0fd1a2e58a8ddc841687d01ba2a3ac92ca96 (diff)
#96008# DialogModel: override dispose / DialogControl: override removingControl/addingControl
Diffstat (limited to 'toolkit/inc/toolkit/controls')
-rw-r--r--toolkit/inc/toolkit/controls/unocontrols.hxx11
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 );
};