summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndrzej Hunt <andrzej.hunt@collabora.com>2013-12-04 16:10:28 +0000
committerAndrzej J.R. Hunt <andrzej.hunt@collabora.com>2013-12-04 16:29:22 +0000
commitbfe74d2254de4e8b7dc488a701d75e5a6169e74d (patch)
treebf5bafdb2cef6f1aea610bbe69e554467489d746 /vcl
parentd760039be5799a500f802494759dda75499ad908 (diff)
Add some logging to MetaFile read.
Change-Id: I11bc4a82fd0d09fb255c30f3aeffecd3b4e95c09
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/metaact.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index d205723af9ea..5c23c6aa70d3 100644
--- a/vcl/source/gdi/metaact.cxx
+++ b/vcl/source/gdi/metaact.cxx
@@ -159,6 +159,8 @@ MetaAction* MetaAction::ReadMetaAction( SvStream& rIStm, ImplMetaReadData* pData
rIStm >> nType;
+ SAL_INFO("vcl.gdi", "ReadMetaAction " << nType);
+
switch( nType )
{
case( META_NULL_ACTION ): pAction = new MetaAction; break;
@@ -4174,6 +4176,8 @@ void MetaCommentAction::Read( SvStream& rIStm, ImplMetaReadData* )
maComment = read_lenPrefixed_uInt8s_ToOString<sal_uInt16>(rIStm);
rIStm >> mnValue >> mnDataSize;
+ SAL_INFO("vcl.gdi", "MetaCommentAction::Read " << maComment);
+
delete[] mpData;
if( mnDataSize )