diff options
author | Greggory Hernandez <greggory.hz@gmail.com> | 2012-02-22 14:08:57 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-22 14:09:45 +0000 |
commit | aff6db70245a74039b5331810d3ff654b1f6af63 (patch) | |
tree | 24467551cc77e694179b989bfc576baee0b4f199 /svx | |
parent | 00f022bac10629d35eb6f073c3dfe90e120202b5 (diff) |
fdo#37210 - UI: Calc usability improvement: Merge cells on right mouse click
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/xml/xmlgrhlp.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svx/source/xml/xmlgrhlp.cxx b/svx/source/xml/xmlgrhlp.cxx index d73c19e475d3..9f2c6c89b127 100644 --- a/svx/source/xml/xmlgrhlp.cxx +++ b/svx/source/xml/xmlgrhlp.cxx @@ -621,6 +621,8 @@ sal_Bool SvXMLGraphicHelper::ImplWriteGraphic( const ::rtl::OUString& rPictureSt } else if( aGraphic.GetType() == GRAPHIC_GDIMETAFILE ) { + fprintf (stderr, "xmlgrhlp.cxx - write meta-file ! 0x%lx\n", + (long)aGraphic.GetChecksum() ); pStream->SetVersion( SOFFICE_FILEFORMAT_8 ); pStream->SetCompressMode( COMPRESSMODE_ZBITMAP ); @@ -643,6 +645,9 @@ sal_Bool SvXMLGraphicHelper::ImplWriteGraphic( const ::rtl::OUString& rPictureSt rMtf.Write( *pStream, GDIMETAFILE_WRITE_REPLACEMENT_RENDERGRAPHIC ); bRet = ( pStream->GetError() == 0 ); + + fprintf (stderr, "xmlgrhlp.cxx - done write meta-file ! 0x%lx\n", + (long)aGraphic.GetChecksum() ); } } uno::Reference < embed::XTransactedObject > xStorage( |