diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-11 10:14:13 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-01-16 12:51:33 +0100 |
commit | a18123fb97e7c69a7fac6724aaa3a8e2440dae98 (patch) | |
tree | 36546217f7fe0f20c6f07e306d0ad68a880ac82e /vcl/source/gdi/outdev.cxx | |
parent | 268050960a16af2b404ef3ba42b6185047027e2d (diff) |
Replaced DBG_ERRORFILE with SAL_INFO.
Diffstat (limited to 'vcl/source/gdi/outdev.cxx')
-rw-r--r-- | vcl/source/gdi/outdev.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/outdev.cxx b/vcl/source/gdi/outdev.cxx index 45887a9f5d91..44b2758b1ed7 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -436,7 +436,7 @@ OutputDevice::~OutputDevice() ImplObjStack* pData = mpObjStack; if ( pData ) { - DBG_ERRORFILE( "OutputDevice::~OutputDevice(): OutputDevice::Push() calls != OutputDevice::Pop() calls" ); + SAL_INFO( "vcl", "OutputDevice::~OutputDevice(): OutputDevice::Push() calls != OutputDevice::Pop() calls" ); while ( pData ) { ImplObjStack* pTemp = pData; @@ -2461,7 +2461,7 @@ void OutputDevice::Pop() if ( !pData ) { - DBG_ERRORFILE( "OutputDevice::Pop() without OutputDevice::Push()" ); + SAL_INFO( "vcl", "OutputDevice::Pop() without OutputDevice::Push()" ); return; } |