Kaydet (Commit) 04387305 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

Move DBG_TRACE to OSL_TRACE

üst a74df038
...@@ -282,21 +282,21 @@ namespace pcr ...@@ -282,21 +282,21 @@ namespace pcr
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL PropertyControlContext_Impl::focusGained( const Reference< XPropertyControl >& Control ) throw (RuntimeException) void SAL_CALL PropertyControlContext_Impl::focusGained( const Reference< XPropertyControl >& Control ) throw (RuntimeException)
{ {
DBG_TRACE( "PropertyControlContext_Impl: FOCUS_GAINED" ); OSL_TRACE( "PropertyControlContext_Impl: FOCUS_GAINED" );
impl_notify_throw( Control, FOCUS_GAINED ); impl_notify_throw( Control, FOCUS_GAINED );
} }
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL PropertyControlContext_Impl::valueChanged( const Reference< XPropertyControl >& Control ) throw (RuntimeException) void SAL_CALL PropertyControlContext_Impl::valueChanged( const Reference< XPropertyControl >& Control ) throw (RuntimeException)
{ {
DBG_TRACE( "PropertyControlContext_Impl: VALUE_CHANGED" ); OSL_TRACE( "PropertyControlContext_Impl: VALUE_CHANGED" );
impl_notify_throw( Control, VALUE_CHANGED ); impl_notify_throw( Control, VALUE_CHANGED );
} }
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL PropertyControlContext_Impl::activateNextControl( const Reference< XPropertyControl >& CurrentControl ) throw (RuntimeException) void SAL_CALL PropertyControlContext_Impl::activateNextControl( const Reference< XPropertyControl >& CurrentControl ) throw (RuntimeException)
{ {
DBG_TRACE( "PropertyControlContext_Impl: ACTIVATE_NEXT" ); OSL_TRACE( "PropertyControlContext_Impl: ACTIVATE_NEXT" );
impl_notify_throw( CurrentControl, ACTIVATE_NEXT ); impl_notify_throw( CurrentControl, ACTIVATE_NEXT );
} }
...@@ -338,15 +338,15 @@ namespace pcr ...@@ -338,15 +338,15 @@ namespace pcr
switch ( rControlEvent.eType ) switch ( rControlEvent.eType )
{ {
case FOCUS_GAINED: case FOCUS_GAINED:
DBG_TRACE( "PropertyControlContext_Impl::processEvent: FOCUS_GAINED" ); OSL_TRACE( "PropertyControlContext_Impl::processEvent: FOCUS_GAINED" );
m_pContext->focusGained( rControlEvent.xControl ); m_pContext->focusGained( rControlEvent.xControl );
break; break;
case VALUE_CHANGED: case VALUE_CHANGED:
DBG_TRACE( "PropertyControlContext_Impl::processEvent: VALUE_CHANGED" ); OSL_TRACE( "PropertyControlContext_Impl::processEvent: VALUE_CHANGED" );
m_pContext->valueChanged( rControlEvent.xControl ); m_pContext->valueChanged( rControlEvent.xControl );
break; break;
case ACTIVATE_NEXT: case ACTIVATE_NEXT:
DBG_TRACE( "PropertyControlContext_Impl::processEvent: ACTIVATE_NEXT" ); OSL_TRACE( "PropertyControlContext_Impl::processEvent: ACTIVATE_NEXT" );
m_pContext->activateNextControl( rControlEvent.xControl ); m_pContext->activateNextControl( rControlEvent.xControl );
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment