From 55dcb060ea5feef0478f7abcaa4da9cbe69bd440 Mon Sep 17 00:00:00 2001 From: Jan-Marek Glogowski Date: Tue, 4 Jan 2022 09:26:42 +0100 Subject: 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 --- xmloff/source/style/impastpl.cxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'xmloff/source') 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); } } -- cgit