diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-11-13 11:33:26 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-11-13 14:43:49 +0100 |
commit | c8dfb25a77f53668e407a60a6f4ae9a826aa015c (patch) | |
tree | 6a6019845fe943a08673a4b4359ba42766b68920 /sw/source | |
parent | 288001be6802cc41c445067a2d690371606202c3 (diff) |
Drop DEBUGSPRMREADER code
Change-Id: Id204eae97850ef9c99229c1316090010013b06e0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159367
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/ww8par2.cxx | 1 | ||||
-rw-r--r-- | sw/source/filter/ww8/ww8scan.cxx | 17 |
2 files changed, 0 insertions, 18 deletions
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx index 9771910f42d1..602256428563 100644 --- a/sw/source/filter/ww8/ww8par2.cxx +++ b/sw/source/filter/ww8/ww8par2.cxx @@ -3618,7 +3618,6 @@ void WW8RStyle::ImportSprms(sal_uInt8 *pSprms, short nLen, bool bPap) WW8SprmIter aSprmIter(pSprms, nLen, maSprmParser); while (const sal_uInt8* pSprm = aSprmIter.GetSprms()) { - SAL_INFO("sw.sprmreader", "id is " << std::hex << aSprmIter.GetCurrentId()); mpIo->ImportSprm(pSprm, aSprmIter.GetRemLen(), aSprmIter.GetCurrentId()); aSprmIter.advance(); } diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx index b018b5bf796e..80f9102dcb1b 100644 --- a/sw/source/filter/ww8/ww8scan.cxx +++ b/sw/source/filter/ww8/ww8scan.cxx @@ -44,10 +44,6 @@ #include <vcl/settings.hxx> #include <vcl/svapp.hxx> -#ifdef DEBUGSPRMREADER -#include <stdio.h> -#endif - using namespace ::com::sun::star::lang; namespace @@ -2833,19 +2829,6 @@ WW8PLCFx_Fc_FKP::WW8Fkp::WW8Fkp(const WW8Fib& rFib, SvStream* pSt, } maEntries.push_back(aEntry); - -#ifdef DEBUGSPRMREADER - { - sal_Int32 nLen; - sal_uInt8* pSprms = GetLenAndIStdAndSprms( nLen ); - WW8SprmIter aIter(pSprms, nLen, maSprmParser); - while (aIter.GetSprms()) - { - SAL_INFO("sw.sprmreader", "id is " << std::hex << aIter.GetCurrentId()); - aIter.advance(); - } - } -#endif } //one more FC than grrpl entries |