diff options
Diffstat (limited to 'vcl/source/helper')
-rw-r--r-- | vcl/source/helper/canvastools.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vcl/source/helper/canvastools.cxx b/vcl/source/helper/canvastools.cxx index 9ba85d0585c8..519f97f2aa8b 100644 --- a/vcl/source/helper/canvastools.cxx +++ b/vcl/source/helper/canvastools.cxx @@ -18,7 +18,6 @@ */ -#include <rtl/logfile.hxx> #include <cppuhelper/compbase1.hxx> #include <com/sun/star/geometry/RealSize2D.hpp> @@ -73,7 +72,7 @@ namespace vcl uno::Reference< rendering::XBitmap > xBitmapFromBitmapEx( const uno::Reference< rendering::XGraphicDevice >& /*xGraphicDevice*/, const ::BitmapEx& inputBitmap ) { - RTL_LOGFILE_CONTEXT( aLog, "::vcl::unotools::xBitmapFromBitmapEx()" ); + SAL_INFO( "vcl.helper", "::vcl::unotools::xBitmapFromBitmapEx()" ); return new vcl::unotools::VclCanvasBitmap( inputBitmap ); } @@ -189,7 +188,7 @@ namespace vcl ::BitmapEx VCL_DLLPUBLIC bitmapExFromXBitmap( const uno::Reference< rendering::XIntegerReadOnlyBitmap >& xInputBitmap ) { - RTL_LOGFILE_CONTEXT( aLog, "::vcl::unotools::bitmapExFromXBitmap()" ); + SAL_INFO( "vcl.helper", "::vcl::unotools::bitmapExFromXBitmap()" ); if( !xInputBitmap.is() ) return ::BitmapEx(); |