summaryrefslogtreecommitdiff
path: root/basebmp
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-25 17:55:19 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-26 19:01:59 +0200
commit89d9b9e252f0584afb0e0d995c80c114697a7aa1 (patch)
treebe78a49d2f04f2884097a6179b22ef8bbb2f61e1 /basebmp
parent1b57a3b5238e56abc51ba0f1cb6053b7a2001f7e (diff)
Log also corresponding destructions of BitmapDevice
Change-Id: Ic74032b430691215482172c3c5f834374d47873d
Diffstat (limited to 'basebmp')
-rw-r--r--basebmp/source/bitmapdevice.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/basebmp/source/bitmapdevice.cxx b/basebmp/source/bitmapdevice.cxx
index 24916f677062..a6774d106552 100644
--- a/basebmp/source/bitmapdevice.cxx
+++ b/basebmp/source/bitmapdevice.cxx
@@ -1090,6 +1090,7 @@ BitmapDevice::BitmapDevice( const basegfx::B2IBox& rBounds,
BitmapDevice::~BitmapDevice()
{
// outline, because of internal ImplBitmapDevice
+ SAL_INFO( "basebmp.bitmapdevice", "~BitmapDevice(" << this << ")" );
}
basegfx::B2IVector BitmapDevice::getSize() const
@@ -2038,7 +2039,7 @@ BitmapDeviceSharedPtr createBitmapDeviceImpl( const basegfx::B2IVector&
<< rSize.getX() << "x" << rSize.getY()
<< (bTopDown ? " top-down " : " bottom-up ")
<< Format::formatName(nScanlineFormat)
- << " = " << result );
+ << " = " << result.get() );
return result;
}