diff options
author | J. Graeme Lingard <jgraeme+git@gmail.com> | 2010-11-28 19:44:03 +0000 |
---|---|---|
committer | J. Graeme Lingard <jgraeme+git@gmail.com> | 2010-11-28 19:44:03 +0000 |
commit | 2b77d15fd2a7698e34aa9f90791c97d1df467c3b (patch) | |
tree | ec8ca60f283b21c75affca8d82f4584463207ec5 /extensions/source/bibliography | |
parent | 7692bfc268c57d6bcbc565179e5c63ffc0f6095d (diff) |
Remove dated comments
Diffstat (limited to 'extensions/source/bibliography')
-rw-r--r-- | extensions/source/bibliography/bibview.cxx | 5 | ||||
-rw-r--r-- | extensions/source/bibliography/formcontrolcontainer.cxx | 22 |
2 files changed, 0 insertions, 27 deletions
diff --git a/extensions/source/bibliography/bibview.cxx b/extensions/source/bibliography/bibview.cxx index a6340d5fb009..c985291a5121 100644 --- a/extensions/source/bibliography/bibview.cxx +++ b/extensions/source/bibliography/bibview.cxx @@ -165,8 +165,6 @@ namespace bib } } } - //--------------------------------------------------------------------- - //--- 19.10.01 16:55:49 ----------------------------------------------- void BibView::_loaded( const EventObject& _rEvent ) { @@ -196,9 +194,6 @@ namespace bib Window::Resize(); } - //--------------------------------------------------------------------- - //--- 18.10.01 18:52:45 ----------------------------------------------- - Reference< awt::XControlContainer > BibView::getControlContainer() { Reference< awt::XControlContainer > xReturn; diff --git a/extensions/source/bibliography/formcontrolcontainer.cxx b/extensions/source/bibliography/formcontrolcontainer.cxx index db61efc3e7c3..665ced0242c5 100644 --- a/extensions/source/bibliography/formcontrolcontainer.cxx +++ b/extensions/source/bibliography/formcontrolcontainer.cxx @@ -54,8 +54,6 @@ namespace bib { } - //--------------------------------------------------------------------- - //--- 18.10.01 18:54:57 ----------------------------------------------- FormControlContainer::~FormControlContainer( ) { DBG_ASSERT( !isFormConnected(), "FormControlContainer::~FormControlContainer: you should disconnect in your derived class!" ); @@ -63,8 +61,6 @@ namespace bib disconnectForm(); } - //--------------------------------------------------------------------- - //--- 18.10.01 17:03:14 ----------------------------------------------- void FormControlContainer::disconnectForm() { ::osl::MutexGuard aGuard( m_aMutex ); @@ -77,8 +73,6 @@ namespace bib } } - //--------------------------------------------------------------------- - //--- 18.10.01 16:56:01 ----------------------------------------------- void FormControlContainer::connectForm( const Reference< XLoadable >& _rxForm ) { DBG_ASSERT( !isFormConnected(), "FormControlContainer::connectForm: already connected!" ); @@ -96,8 +90,6 @@ namespace bib m_xForm = _rxForm; } - //--------------------------------------------------------------------- - //--- 18.10.01 18:50:14 ----------------------------------------------- struct ControlModeSwitch : public ::std::unary_function< Reference< XControl >, void > { sal_Bool bDesign; @@ -110,8 +102,6 @@ namespace bib } }; - //--------------------------------------------------------------------- - //--- 18.10.01 18:49:57 ----------------------------------------------- void FormControlContainer::implSetDesignMode( sal_Bool _bDesign ) { try @@ -134,42 +124,30 @@ namespace bib } } - //--------------------------------------------------------------------- - //--- 18.10.01 18:16:54 ----------------------------------------------- void FormControlContainer::ensureDesignMode() { implSetDesignMode( !m_xForm.is() || !m_xForm->isLoaded() ); } - //--------------------------------------------------------------------- - //--- 18.10.01 16:45:33 ----------------------------------------------- void FormControlContainer::_loaded( const ::com::sun::star::lang::EventObject& /*_rEvent*/ ) { implSetDesignMode( sal_False ); } - //--------------------------------------------------------------------- - //--- 18.10.01 16:45:35 ----------------------------------------------- void FormControlContainer::_unloading( const ::com::sun::star::lang::EventObject& /*_rEvent*/ ) { implSetDesignMode( sal_True ); } - //--------------------------------------------------------------------- - //--- 18.10.01 16:45:36 ----------------------------------------------- void FormControlContainer::_unloaded( const ::com::sun::star::lang::EventObject& /*_rEvent*/ ) { } - //--------------------------------------------------------------------- - //--- 18.10.01 16:45:36 ----------------------------------------------- void FormControlContainer::_reloading( const ::com::sun::star::lang::EventObject& /*_rEvent*/ ) { implSetDesignMode( sal_True ); } - //--------------------------------------------------------------------- - //--- 18.10.01 16:45:37 ----------------------------------------------- void FormControlContainer::_reloaded( const ::com::sun::star::lang::EventObject& /*_rEvent*/ ) { implSetDesignMode( sal_False ); |