summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-15 12:03:55 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-19 08:29:01 +0000
commitf573de2a956d91f67c384dbb54c980c117219032 (patch)
tree05c58829e18e4099b56c3edaf2c6477b065a1a5b /vcl
parent6fd7c0c7714a90a6b99003b67a47b28b800cfdff (diff)
no need to wrap calls to SAL_INFO in #ifdef DBG_UTIL
Change-Id: Ic373a8f145f3f78c3f109e36a9c1dd9156f0dd75 Reviewed-on: https://gerrit.libreoffice.org/32034 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/wmf/wmf.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/source/filter/wmf/wmf.cxx b/vcl/source/filter/wmf/wmf.cxx
index dabf950f37e7..ad9d1536d1d5 100644
--- a/vcl/source/filter/wmf/wmf.cxx
+++ b/vcl/source/filter/wmf/wmf.cxx
@@ -43,11 +43,9 @@ bool ConvertWMFToGDIMetaFile( SvStream & rStreamWMF, GDIMetaFile & rGDIMetaFile,
WMFReader( rStreamWMF, rGDIMetaFile, pConfigItem, pExtHeader ).ReadWMF( );
}
-#ifdef DBG_UTIL
// #i123216# allow a look at CheckSum and ByteSize for debugging
SAL_INFO("vcl.emf", "\t\t\tchecksum: 0x" << std::hex << rGDIMetaFile.GetChecksum() << std::dec);
SAL_INFO("vcl.emf", "\t\t\tsize: " << rGDIMetaFile.GetSizeBytes());
-#endif
rStreamWMF.SetEndian( nOrigNumberFormat );
return !rStreamWMF.GetError();