summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-11-25 14:49:20 +0100
committerMichael Stahl <mstahl@redhat.com>2014-11-25 18:09:38 +0100
commit501ae485c7c5f7629f190755f8d1537cfe5a3d4d (patch)
tree5f39d9a9c2e4b546aeff2ad1ad3303786e32fc21 /xmloff
parent1eb6e229892bb4248fca33259c85c8e26f527c47 (diff)
xmloff: clean up some debug printfs
Change-Id: I208bbe47d1134b6a362e50d54093e6d35e85f51b
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/txtlists.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/xmloff/source/text/txtlists.cxx b/xmloff/source/text/txtlists.cxx
index 912c9a5cb311..2343364dbaf9 100644
--- a/xmloff/source/text/txtlists.cxx
+++ b/xmloff/source/text/txtlists.cxx
@@ -76,7 +76,6 @@ XMLTextListsHelper::~XMLTextListsHelper()
void XMLTextListsHelper::PushListContext(
XMLTextListBlockContext *i_pListBlock)
{
-// fprintf(stderr, "PushListContext\n");
mListStack.push(::boost::make_tuple(i_pListBlock,
static_cast<XMLTextListItemContext*>(0),
static_cast<XMLNumberedParaContext*>(0)));
@@ -85,7 +84,6 @@ void XMLTextListsHelper::PushListContext(
void XMLTextListsHelper::PushListContext(
XMLNumberedParaContext *i_pNumberedParagraph)
{
-// fprintf(stderr, "PushListContext(NP)\n");
mListStack.push(::boost::make_tuple(
static_cast<XMLTextListBlockContext*>(0),
static_cast<XMLTextListItemContext*>(0), i_pNumberedParagraph));
@@ -94,7 +92,6 @@ void XMLTextListsHelper::PushListContext(
void XMLTextListsHelper::PopListContext()
{
assert(mListStack.size());
-// fprintf(stderr, "PopListContext\n");
if ( !mListStack.empty())
mListStack.pop();
}