diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-04 09:26:42 +0100 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2022-01-04 11:26:47 +0100 |
commit | 55dcb060ea5feef0478f7abcaa4da9cbe69bd440 (patch) | |
tree | 8c2c150b8699f21b65cb06a81f8d21f9ae54f990 /xmloff/source | |
parent | 5de44f16b68977058386a60ca468de3efa780a25 (diff) |
Drop all commented SAL_DEBUG calls
Change-Id: I3be7153d27b83766303519e73d1a355ba327871a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127929
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/style/impastpl.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xmloff/source/style/impastpl.cxx b/xmloff/source/style/impastpl.cxx index fd7c84dc1642..42565e08cf85 100644 --- a/xmloff/source/style/impastpl.cxx +++ b/xmloff/source/style/impastpl.cxx @@ -400,7 +400,6 @@ void SvXMLAutoStylePoolP_Impl::RegisterName( XmlStyleFamily nFamily, const OUStr XMLAutoStyleFamily aTemp(nFamily); auto const iter = m_FamilySet.find(aTemp); assert(iter != m_FamilySet.end()); // family must be known - // SAL_DEBUG("SvXMLAutoStylePoolP_Impl::RegisterName: " << nFamily << ", '" << rName << "'"); (*iter)->maNameSet.insert(rName); } @@ -621,7 +620,6 @@ void SvXMLAutoStylePoolP_Impl::exportXML( OUString oldName = aExpStyles[i].mpProperties->GetName(); sal_Int32 dashIx = oldName.indexOf('-'); OUString newName = (dashIx > 0 ? oldName.copy(0, dashIx) : oldName) + OUString::number(i); - // SAL_DEBUG("renaming '" << oldName << "' -> '" << newName << "'"); aExpStyles[i].mpProperties->SetName(newName); } } |