Kaydet (Commit) 501ae485 authored tarafından Michael Stahl's avatar Michael Stahl

xmloff: clean up some debug printfs

Change-Id: I208bbe47d1134b6a362e50d54093e6d35e85f51b
üst 1eb6e229
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment