diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-09-04 08:54:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-09-04 08:54:50 +0100 |
commit | 21d64a76ec128ae5787b24dc444a2f51ed8acf5d (patch) | |
tree | adcc47feae6adb5815b83c70e16822caf9ce956e /emfio/source/reader | |
parent | c8a3f0fe63e38a1b597327d1145568dc9ae7a84a (diff) |
stray debugging
Change-Id: Iabe56218f8914d8d858446eb177cb89dc1cd8601
Diffstat (limited to 'emfio/source/reader')
-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); } } |