summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-19 11:55:44 +0200
committerNoel Grandin <noel@peralex.com>2015-10-19 13:08:29 +0200
commit39e63bfac528d8c5c002ee8fef4a1e5d7181b826 (patch)
tree8e8dc14e1719c361ccf0cdaccde66b3b7862b1e7 /vcl
parent367105e0248c7b80b60b2554d04f5f248b4259b3 (diff)
convert remaing DBG_WARNING to SAL_INFO
and drop the macro Change-Id: I452ca373d0c277166e94928c1bce78bf37e39d7c
Diffstat (limited to 'vcl')
-rw-r--r--vcl/generic/print/genpspgraphics.cxx2
-rw-r--r--vcl/source/app/svdata.cxx2
-rw-r--r--vcl/source/window/mouse.cxx1
3 files changed, 2 insertions, 3 deletions
diff --git a/vcl/generic/print/genpspgraphics.cxx b/vcl/generic/print/genpspgraphics.cxx
index a3ebd0eec1bb..1ff761ccba50 100644
--- a/vcl/generic/print/genpspgraphics.cxx
+++ b/vcl/generic/print/genpspgraphics.cxx
@@ -524,7 +524,7 @@ void GenPspGraphics::drawMask( const SalTwoRect&,
SalBitmap* GenPspGraphics::getBitmap( long, long, long, long )
{
- DBG_WARNING ("Warning: PrinterGfx::GetBitmap() not implemented");
+ SAL_INFO("vcl", "Warning: PrinterGfx::GetBitmap() not implemented");
return NULL;
}
diff --git a/vcl/source/app/svdata.cxx b/vcl/source/app/svdata.cxx
index 4cc145f9060c..45a6c024206d 100644
--- a/vcl/source/app/svdata.cxx
+++ b/vcl/source/app/svdata.cxx
@@ -134,7 +134,7 @@ vcl::Window* ImplGetDefaultWindow()
if ( !pSVData->mpDefaultWin && !pSVData->mbDeInit )
{
- DBG_WARNING( "ImplGetDefaultWindow(): No AppWindow" );
+ SAL_INFO( "vcl", "ImplGetDefaultWindow(): No AppWindow" );
pSVData->mpDefaultWin = VclPtr<WorkWindow>::Create( nullptr, WB_DEFAULTWIN );
pSVData->mpDefaultWin->SetText( OUString( "VCL ImplGetDefaultWindow" ) );
diff --git a/vcl/source/window/mouse.cxx b/vcl/source/window/mouse.cxx
index 16bb316496eb..d0556a98ed75 100644
--- a/vcl/source/window/mouse.cxx
+++ b/vcl/source/window/mouse.cxx
@@ -306,7 +306,6 @@ void Window::ImplGrabFocus( GetFocusFlags nFlags )
{
// here we already switch focus as ToTop()
// should not give focus to another window
- //DBG_WARNING( "Window::GrabFocus() - Frame doesn't have the focus" );
mpWindowImpl->mpFrame->ToTop( SAL_FRAME_TOTOP_GRABFOCUS | SAL_FRAME_TOTOP_GRABFOCUS_ONLY );
return;
}