summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-11-21 21:47:46 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-11-21 23:06:09 +0100
commit6fb943be1cd9d41e173914176698a9b162618447 (patch)
treebb2c492e4d5dab931e8990d2cb9bf5cd5c9ce9c3 /writerfilter
parentd47b674951aedd03815a3f27591b1791f7dfb52d (diff)
writerfilter: remove strange SAL_DEBUG lines
Ideally the git hook makes impossible to add these. Change-Id: Ifa06ddde41ad4f23368ae401c1aa58a43fd14e12
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapper.cxx2
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx2
2 files changed, 0 insertions, 4 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx
index 8d4f548e2a54..3285d7e319bc 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -219,11 +219,9 @@ void DomainMapper::lcl_attribute(Id nName, Value & val)
case NS_ooxml::LN_endnote:
break;
case NS_ooxml::LN_CT_Bookmark_name:
- // SAL_DEBUG("LN_CT_Bookmark_name " << sStringValue);
m_pImpl->SetBookmarkName( sStringValue );
break;
case NS_ooxml::LN_CT_MarkupRangeBookmark_id:
- // SAL_DEBUG("LN_CT_MarkupRangeBookmark_id " << sStringValue);
// add a bookmark range -- this remembers a bookmark starting here
// or, if the bookmark was already started or, if the bookmark was
// already started before, writes out the bookmark
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 5c3aaebbe1ec..462c44940aba 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -4354,7 +4354,6 @@ void DomainMapper_Impl::PopFieldContext()
void DomainMapper_Impl::SetBookmarkName( const OUString& rBookmarkName )
{
- // SAL_DEBUG("DomainMapper_Impl::SetBookmarkName for id " << m_sCurrentBkmkId << " to " << rBookmarkName);
BookmarkMap_t::iterator aBookmarkIter = m_aBookmarkMap.find( m_sCurrentBkmkId );
if( aBookmarkIter != m_aBookmarkMap.end() )
aBookmarkIter->second.m_sBookmarkName = rBookmarkName;
@@ -4364,7 +4363,6 @@ void DomainMapper_Impl::SetBookmarkName( const OUString& rBookmarkName )
void DomainMapper_Impl::StartOrEndBookmark( const OUString& rId )
{
- // SAL_DEBUG("DomainMapper_Impl::AddBookmark " << rId);
/*
* Add the dummy paragraph to handle section properties
* iff the first element in the section is a table. If the dummy para is not added yet, then add it;