[Libreoffice-commits] core.git: vcl/source

Andrzej Hunt andrzej.hunt at collabora.com
Wed Dec 4 08:30:14 PST 2013


 vcl/source/gdi/metaact.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit bfe74d2254de4e8b7dc488a701d75e5a6169e74d
Author: Andrzej Hunt <andrzej.hunt at collabora.com>
Date:   Wed Dec 4 16:10:28 2013 +0000

    Add some logging to MetaFile read.
    
    Change-Id: I11bc4a82fd0d09fb255c30f3aeffecd3b4e95c09

diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index d205723..5c23c6a 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 )


More information about the Libreoffice-commits mailing list