summaryrefslogtreecommitdiff
path: root/vcl/source/window
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-06 10:00:27 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-06 10:19:54 +0000
commit4e182284510a5fc76c1343bfa432780dc4cd609d (patch)
treee1969eeea3620993b42c55cdc2832359e66f592e /vcl/source/window
parentb80dc5827125a0ab3bc6b5479330ba2469a6afb9 (diff)
OSL_TRACE -> SAL_ in vcl
Change-Id: Icd317671a6b1b5356f0ccc7c59d50952fe20269b Reviewed-on: https://gerrit.libreoffice.org/31667 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window')
-rw-r--r--vcl/source/window/dndeventdispatcher.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/window/dndeventdispatcher.cxx b/vcl/source/window/dndeventdispatcher.cxx
index 2772c02a0d6c..c9c5aa607463 100644
--- a/vcl/source/window/dndeventdispatcher.cxx
+++ b/vcl/source/window/dndeventdispatcher.cxx
@@ -112,7 +112,7 @@ void SAL_CALL DNDEventDispatcher::drop( const DropTargetDropEvent& dtde )
// reject drop if no listeners found
if( nListeners == 0 ) {
- OSL_TRACE( "rejecting drop due to missing listeners." );
+ SAL_WARN( "vcl", "rejecting drop due to missing listeners." );
dtde.Context->rejectDrop();
}
@@ -139,7 +139,7 @@ void SAL_CALL DNDEventDispatcher::dragEnter( const DropTargetDragEnterEvent& dtd
// reject drag if no listener found
if( nListeners == 0 ) {
- OSL_TRACE( "rejecting drag enter due to missing listeners." );
+ SAL_WARN( "vcl", "rejecting drag enter due to missing listeners." );
dtdee.Context->rejectDrag();
}
@@ -189,7 +189,7 @@ void SAL_CALL DNDEventDispatcher::dragOver( const DropTargetDragEvent& dtde )
// reject drag if no listener found
if( nListeners == 0 )
{
- OSL_TRACE( "rejecting drag over due to missing listeners." );
+ SAL_WARN( "vcl", "rejecting drag over due to missing listeners." );
dtde.Context->rejectDrag();
}
}
@@ -226,7 +226,7 @@ void SAL_CALL DNDEventDispatcher::dropActionChanged( const DropTargetDragEvent&
// reject drag if no listener found
if( nListeners == 0 )
{
- OSL_TRACE( "rejecting dropActionChanged due to missing listeners." );
+ SAL_WARN( "vcl", "rejecting dropActionChanged due to missing listeners." );
dtde.Context->rejectDrag();
}
}