Kaydet (Commit) a0cd92db authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Cleaned up some OSL_TRACE -> SAL_INFO uses

Change-Id: Ie70be4d3e4f086eaa301295df0bc7d25792d2cd2
üst 60cb70b9
...@@ -2988,12 +2988,7 @@ void SfxBaseModel::postEvent_Impl( const ::rtl::OUString& aName, const uno::Refe ...@@ -2988,12 +2988,7 @@ void SfxBaseModel::postEvent_Impl( const ::rtl::OUString& aName, const uno::Refe
m_pData->m_aInterfaceContainer.getContainer( ::getCppuType( (const uno::Reference< document::XDocumentEventListener >*)0 ) ); m_pData->m_aInterfaceContainer.getContainer( ::getCppuType( (const uno::Reference< document::XDocumentEventListener >*)0 ) );
if ( pIC ) if ( pIC )
{ {
#ifdef DBG_UTIL SAL_INFO("sfx2", "SfxDocumentEvent: " + aName);
rtl::OStringBuffer aTmp(RTL_CONSTASCII_STRINGPARAM(
"SfxDocumentEvent: "));
aTmp.append(rtl::OUStringToOString(aName, RTL_TEXTENCODING_UTF8));
OSL_TRACE(aTmp.getStr());
#endif
document::DocumentEvent aDocumentEvent( (frame::XModel*)this, aName, xController, uno::Any() ); document::DocumentEvent aDocumentEvent( (frame::XModel*)this, aName, xController, uno::Any() );
...@@ -3006,12 +3001,7 @@ void SfxBaseModel::postEvent_Impl( const ::rtl::OUString& aName, const uno::Refe ...@@ -3006,12 +3001,7 @@ void SfxBaseModel::postEvent_Impl( const ::rtl::OUString& aName, const uno::Refe
pIC = m_pData->m_aInterfaceContainer.getContainer( ::getCppuType( (const uno::Reference< document::XEventListener >*)0 ) ); pIC = m_pData->m_aInterfaceContainer.getContainer( ::getCppuType( (const uno::Reference< document::XEventListener >*)0 ) );
if ( pIC ) if ( pIC )
{ {
#ifdef DBG_UTIL SAL_INFO("sfx2", "SfxEvent: " + aName);
rtl::OStringBuffer aTmp(RTL_CONSTASCII_STRINGPARAM(
"SfxEvent: "));
aTmp.append(rtl::OUStringToOString(aName, RTL_TEXTENCODING_UTF8));
OSL_TRACE(aTmp.getStr());
#endif
document::EventObject aEvent( (frame::XModel*)this, aName ); document::EventObject aEvent( (frame::XModel*)this, aName );
......
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