summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/cellvaluebinding.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-28 15:45:06 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-28 15:45:06 +0100
commitb6f77d2702721d25ae7be5a749b65a53f55f5ee2 (patch)
tree2d7828399e3267eb7098c231560b16c992ca09e0 /sc/source/ui/unoobj/cellvaluebinding.cxx
parentb10be2e0294567cf79863e3e54111d4ff95397fd (diff)
Remove remaining DBG_CTOR etc. remnants from sc
Change-Id: Ica865166d6f187bbe610ed537208eab809a77e5f
Diffstat (limited to 'sc/source/ui/unoobj/cellvaluebinding.cxx')
-rw-r--r--sc/source/ui/unoobj/cellvaluebinding.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/sc/source/ui/unoobj/cellvaluebinding.cxx b/sc/source/ui/unoobj/cellvaluebinding.cxx
index 9d4a9bb7a9ca..953b2a3a0544 100644
--- a/sc/source/ui/unoobj/cellvaluebinding.cxx
+++ b/sc/source/ui/unoobj/cellvaluebinding.cxx
@@ -48,11 +48,6 @@ namespace calc
using namespace ::com::sun::star::util;
using namespace ::com::sun::star::form::binding;
-
- //= OCellValueBinding
-
- DBG_NAME( OCellValueBinding )
-
#ifdef DBG_UTIL
const char* OCellValueBinding::checkConsistency_static( const void* _pThis )
{
@@ -81,8 +76,6 @@ namespace calc
,m_bInitialized( false )
,m_bListPos( _bListPos )
{
- DBG_CTOR( OCellValueBinding, checkConsistency_static );
-
// register our property at the base class
CellAddress aInitialPropValue;
registerPropertyNoMember(
@@ -105,8 +98,6 @@ namespace calc
acquire(); // prevent duplicate dtor
dispose();
}
-
- DBG_DTOR( OCellValueBinding, checkConsistency_static );
}
@@ -118,8 +109,6 @@ namespace calc
void SAL_CALL OCellValueBinding::disposing()
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
-
Reference<XModifyBroadcaster> xBroadcaster( m_xCell, UNO_QUERY );
if ( xBroadcaster.is() )
{
@@ -135,7 +124,6 @@ namespace calc
Reference< XPropertySetInfo > SAL_CALL OCellValueBinding::getPropertySetInfo( ) throw(RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
return createPropertySetInfo( getInfoHelper() ) ;
}
@@ -156,7 +144,6 @@ namespace calc
void SAL_CALL OCellValueBinding::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) const
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
OSL_ENSURE( _nHandle == PROP_HANDLE_BOUND_CELL, "OCellValueBinding::getFastPropertyValue: invalid handle!" );
// we only have this one property ....
(void)_nHandle; // avoid warning in product version
@@ -170,7 +157,6 @@ namespace calc
Sequence< Type > SAL_CALL OCellValueBinding::getSupportedValueTypes( ) throw (RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
checkDisposed( );
checkInitialized( );
@@ -202,7 +188,6 @@ namespace calc
sal_Bool SAL_CALL OCellValueBinding::supportsType( const Type& aType ) throw (RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
checkDisposed( );
checkInitialized( );
@@ -220,7 +205,6 @@ namespace calc
Any SAL_CALL OCellValueBinding::getValue( const Type& aType ) throw (IncompatibleTypesException, RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
checkDisposed( );
checkInitialized( );
checkValueType( aType );
@@ -307,7 +291,6 @@ namespace calc
void SAL_CALL OCellValueBinding::setValue( const Any& aValue ) throw (IncompatibleTypesException, NoSupportException, RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
checkDisposed( );
checkInitialized( );
if ( aValue.hasValue() )
@@ -469,8 +452,6 @@ namespace calc
OUString SAL_CALL OCellValueBinding::getImplementationName( ) throw (RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
-
return OUString( "com.sun.star.comp.sheet.OCellValueBinding" );
}
@@ -481,8 +462,6 @@ namespace calc
Sequence< OUString > SAL_CALL OCellValueBinding::getSupportedServiceNames( ) throw (RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
-
Sequence< OUString > aServices( m_bListPos ? 3 : 2 );
aServices[ 0 ] = "com.sun.star.table.CellValueBinding";
aServices[ 1 ] = "com.sun.star.form.binding.ValueBinding";
@@ -531,16 +510,12 @@ namespace calc
void SAL_CALL OCellValueBinding::modified( const EventObject& /* aEvent */ ) throw (RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
-
notifyModified();
}
void SAL_CALL OCellValueBinding::disposing( const EventObject& aEvent ) throw (RuntimeException, std::exception)
{
- DBG_CHKTHIS( OCellValueBinding, checkConsistency_static );
-
Reference<XInterface> xCellInt( m_xCell, UNO_QUERY );
if ( xCellInt == aEvent.Source )
{