summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-07 13:13:02 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-13 16:50:41 +0100
commit4051dd7fd8ac5c33e44b108eb5326c298de99027 (patch)
treeefd28a57199d5abf10b01380685fab2e918921ea
parent3560e5891f3a1ad6c597792d3004cf39ab85dbae (diff)
Move DBG_TRACE1 to OSL_TRACE
-rw-r--r--sfx2/source/appl/appserv.cxx2
-rw-r--r--svx/source/accessibility/AccessibleTextHelper.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index ead5de75cc37..ce56b6cc7e27 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -251,7 +251,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
if this dialog is closed by the user ...
So we ignore this request now and wait for a new user decision.
*/
- DBG_TRACE1( "QueryExit => FALSE (DispatchLevel == %u)", Application::GetDispatchLevel() );
+ OSL_TRACE( "QueryExit => FALSE (DispatchLevel == %u)", Application::GetDispatchLevel() );
return;
}
diff --git a/svx/source/accessibility/AccessibleTextHelper.cxx b/svx/source/accessibility/AccessibleTextHelper.cxx
index c9e01f032282..38a69f805808 100644
--- a/svx/source/accessibility/AccessibleTextHelper.cxx
+++ b/svx/source/accessibility/AccessibleTextHelper.cxx
@@ -451,13 +451,13 @@ namespace accessibility
// we just received the focus, also send caret event then
UpdateSelection();
- DBG_TRACE1("AccessibleTextHelper_Impl::SetChildFocus(): Paragraph %d received focus", nChild );
+ OSL_TRACE("AccessibleTextHelper_Impl::SetChildFocus(): Paragraph %d received focus", nChild );
}
else
{
maParaManager.SetFocus( -1 );
- DBG_TRACE1("AccessibleTextHelper_Impl::SetChildFocus(): Paragraph %d lost focus", nChild );
+ OSL_TRACE("AccessibleTextHelper_Impl::SetChildFocus(): Paragraph %d lost focus", nChild );
if( mbGroupHasFocus )
SetShapeFocus( sal_True );
@@ -474,7 +474,7 @@ namespace accessibility
mbGroupHasFocus = sal_True;
maParaManager.SetFocus( nNewChild );
- DBG_TRACE1("AccessibleTextHelper_Impl::ChangeChildFocus(): Paragraph %d received focus", nNewChild );
+ OSL_TRACE("AccessibleTextHelper_Impl::ChangeChildFocus(): Paragraph %d received focus", nNewChild );
}
void AccessibleTextHelper_Impl::SetShapeFocus( sal_Bool bHaveFocus ) SAL_THROW((::com::sun::star::uno::RuntimeException))