summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-04 21:31:27 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-11 23:41:06 +0100
commit533f89e49395bbc31baaab9ade46db934b383e14 (patch)
tree9ded4a41edf1f0ac42bd7819f2ef5927b993935e /vcl
parent5cce85634ce63fbbed99ba83f844ae179b485bc1 (diff)
Move DBG_ERROR1 to OSL_TRACE
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/accel.cxx2
-rw-r--r--vcl/source/window/winproc.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/accel.cxx b/vcl/source/window/accel.cxx
index c78a1eb13f6a..22287a42ffca 100644
--- a/vcl/source/window/accel.cxx
+++ b/vcl/source/window/accel.cxx
@@ -268,7 +268,7 @@ void Accelerator::ImplInsertAccel( USHORT nItemId, const KeyCode& rKeyCode,
}
else if ( !mpData->maKeyTable.Insert( nCode, pEntry ) )
{
- DBG_ERROR1( "Accelerator::InsertItem(): KeyCode (Key: %lx) already exists", nCode );
+ OSL_TRACE( "Accelerator::InsertItem(): KeyCode (Key: %lx) already exists", nCode );
delete pEntry;
}
else
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx
index ca35f12b5ce6..a7d09cb6dd20 100644
--- a/vcl/source/window/winproc.cxx
+++ b/vcl/source/window/winproc.cxx
@@ -2605,7 +2605,7 @@ long ImplWindowFrameProc( Window* pWindow, SalFrame* /*pFrame*/,
break;
#ifdef DBG_UTIL
default:
- DBG_ERROR1( "ImplWindowFrameProc(): unknown event (%lu)", (ULONG)nEvent );
+ OSL_TRACE( "ImplWindowFrameProc(): unknown event (%lu)", (ULONG)nEvent );
break;
#endif
}