diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-12-02 20:13:55 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-12-03 08:23:30 +0100 |
commit | f8fa0d27074ec1af450196efa1be14ae1dda9314 (patch) | |
tree | 9900b78079dc2ca4c8f08c760d7ced51ce2de075 /sw/source | |
parent | 52e1d0ca6ad38b4b4fdc77b0951ad26f0ac18ec5 (diff) |
sw: remove useless debug code in SwWW8ImplReader
One can check the value of addString in a debugger without this code.
Change-Id: I863b3c70e741f270b5aac07ba2c0fa5186daeaa7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126261
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/ww8par.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx index cf5f4fe2cb6e..a23d4ee4ece4 100644 --- a/sw/source/filter/ww8/ww8par.cxx +++ b/sw/source/filter/ww8/ww8par.cxx @@ -133,11 +133,6 @@ #include <breakit.hxx> -#if OSL_DEBUG_LEVEL > 1 -#include <iostream> -#include <dbgoutsw.hxx> -#endif - #include <sfx2/docfile.hxx> #include <swdll.hxx> #include "WW8Sttbf.hxx" @@ -3450,10 +3445,6 @@ void SwWW8ImplReader::simpleAddTextToParagraph(const OUString& rAddString) if (addString.isEmpty()) return; -#if OSL_DEBUG_LEVEL > 1 - SAL_INFO("sw.ww8", "<addTextToParagraph>" << addString << "</addTextToParagraph>"); -#endif - const SwContentNode *pCntNd = m_pPaM->GetContentNode(); const SwTextNode* pNd = pCntNd ? pCntNd->GetTextNode() : nullptr; |