diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-22 21:20:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-23 03:38:49 +0000 |
commit | 0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch) | |
tree | 5024cba9f9ea5e3b23ea26025323f6aef39488d0 /sd/workben | |
parent | b81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff) |
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb
Reviewed-on: https://gerrit.libreoffice.org/8182
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/workben')
-rw-r--r-- | sd/workben/custompanel/ctp_panel.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sd/workben/custompanel/ctp_panel.cxx b/sd/workben/custompanel/ctp_panel.cxx index 6941e33ab45b..99fad9ef0cb2 100644 --- a/sd/workben/custompanel/ctp_panel.cxx +++ b/sd/workben/custompanel/ctp_panel.cxx @@ -103,7 +103,7 @@ namespace sd { namespace colortoolpanel //================================================================================================================== //= class SingleColorPanel //================================================================================================================== - //------------------------------------------------------------------------------------------------------------------ + SingleColorPanel::SingleColorPanel( const Reference< XComponentContext >& i_rContext, const Reference< XConfigurationController >& i_rConfigController, const Reference< XResourceId >& i_rResourceId ) :SingleColorPanel_Base( m_aMutex ) @@ -143,12 +143,12 @@ namespace sd { namespace colortoolpanel osl_atomic_decrement( &m_refCount ); } - //------------------------------------------------------------------------------------------------------------------ + SingleColorPanel::~SingleColorPanel() { } - //------------------------------------------------------------------------------------------------------------------ + Reference< XWindow > SAL_CALL SingleColorPanel::getWindow( ) throw (RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); @@ -157,7 +157,7 @@ namespace sd { namespace colortoolpanel return m_xWindow; } - //------------------------------------------------------------------------------------------------------------------ + Reference< XAccessible > SAL_CALL SingleColorPanel::createAccessible( const Reference< XAccessible >& i_rParentAccessible ) throw (RuntimeException) { (void)i_rParentAccessible; @@ -166,7 +166,7 @@ namespace sd { namespace colortoolpanel // extension only, you'll want to do this correctly .... } - //------------------------------------------------------------------------------------------------------------------ + Reference< XResourceId > SAL_CALL SingleColorPanel::getResourceId( ) throw (RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); @@ -175,7 +175,7 @@ namespace sd { namespace colortoolpanel return m_xResourceId; } - //------------------------------------------------------------------------------------------------------------------ + ::sal_Bool SAL_CALL SingleColorPanel::isAnchorOnly( ) throw (RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); @@ -184,7 +184,7 @@ namespace sd { namespace colortoolpanel return sal_False; } - //------------------------------------------------------------------------------------------------------------------ + void SAL_CALL SingleColorPanel::windowPaint( const PaintEvent& i_rEvent ) throw (RuntimeException) { try @@ -204,13 +204,13 @@ namespace sd { namespace colortoolpanel } } - //------------------------------------------------------------------------------------------------------------------ + void SAL_CALL SingleColorPanel::disposing( const EventObject& i_rSource ) throw (RuntimeException) { (void)i_rSource; } - //------------------------------------------------------------------------------------------------------------------ + void SAL_CALL SingleColorPanel::disposing() { ::osl::MutexGuard aGuard( m_aMutex ); |