diff options
Diffstat (limited to 'emfio/source')
-rw-r--r-- | emfio/source/reader/mtftools.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/emfio/source/reader/mtftools.cxx b/emfio/source/reader/mtftools.cxx index ce2b8ab1b395..9fec82543f2a 100644 --- a/emfio/source/reader/mtftools.cxx +++ b/emfio/source/reader/mtftools.cxx @@ -608,8 +608,6 @@ namespace emfio if ( (sal_uInt32)nIndex < mvGDIObj.size() ) pGDIObj = mvGDIObj[ nIndex ].get(); - fprintf(stderr, "index %d is %p\n", nIndex, pGDIObj); - if ( pGDIObj ) { if (const auto pen = dynamic_cast<WinMtfLineStyle*>(pGDIObj)) @@ -717,7 +715,6 @@ namespace emfio if ( nIndex == mvGDIObj.size() ) ImplResizeObjectArry( mvGDIObj.size() + 16 ); - fprintf(stderr, "index %ld set to %p\n", nIndex, pObject.get()); mvGDIObj[ nIndex ] = std::move(pObject); } @@ -754,8 +751,6 @@ namespace emfio if ( (sal_uInt32)nIndex >= mvGDIObj.size() ) ImplResizeObjectArry( nIndex + 16 ); - fprintf(stderr, "22 index %d set to %p\n", nIndex, pObject.get()); - mvGDIObj[ nIndex ] = std::move(pObject); } } |