diff options
author | Jan Holesovsky <kendy@collabora.com> | 2013-12-05 09:07:44 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2013-12-05 09:08:09 +0100 |
commit | eb45c69b64ef19a33e4c04c6eba3733f18f8b5fc (patch) | |
tree | abb74516c9bb454413c1a5a132448e65145aea1d /cppcanvas | |
parent | 4aa1c8d9147ed1421b648fc9b954fa69c5bf4b00 (diff) |
EMF+: Log the stride too.
Change-Id: I903d8e5629c578f292307bf3abdb2f58ef9dd92c
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/mtfrenderer/emfplus.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppcanvas/source/mtfrenderer/emfplus.cxx b/cppcanvas/source/mtfrenderer/emfplus.cxx index ccb8bd666d27..722d23ff6509 100644 --- a/cppcanvas/source/mtfrenderer/emfplus.cxx +++ b/cppcanvas/source/mtfrenderer/emfplus.cxx @@ -959,7 +959,7 @@ namespace cppcanvas if (type == 1) { // bitmap s >> width >> height >> stride >> pixelFormat >> unknown; - SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << width << " height: " << height << " stride: " << "pixelFormat: 0x" << std::hex << pixelFormat << std::dec); + SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << width << " height: " << height << " stride: " << stride << " pixelFormat: 0x" << std::hex << pixelFormat << std::dec); if (width == 0) { // non native formats GraphicFilter filter; |