Kaydet (Commit) 22c2ffaa authored tarafından Miklos Vajna's avatar Miklos Vajna

writerfilter: fix build with DEBUG_FACTORY defined and enable when dbglevel==2

Change-Id: Ie56458a0f8752c21470e166735fd495c194f06ba
üst ef597d80
...@@ -47,6 +47,7 @@ $(eval $(call gb_Library_add_defs,writerfilter,\ ...@@ -47,6 +47,7 @@ $(eval $(call gb_Library_add_defs,writerfilter,\
-DDEBUG_DMAPPER_TABLE_HANDLER \ -DDEBUG_DMAPPER_TABLE_HANDLER \
-DDEBUG_TABLE \ -DDEBUG_TABLE \
-DDEBUG_DMAPPER_SETTINGS_TABLE \ -DDEBUG_DMAPPER_SETTINGS_TABLE \
-DDEBUG_FACTORY \
) \ ) \
)) ))
......
...@@ -269,7 +269,7 @@ OOXMLFactory::createFastChildContext(OOXMLFastContextHandler * pHandler, ...@@ -269,7 +269,7 @@ OOXMLFactory::createFastChildContext(OOXMLFastContextHandler * pHandler,
ret = createFastChildContextFromFactory(pHandler, pFactory, Element); ret = createFastChildContextFromFactory(pHandler, pFactory, Element);
#ifdef DEBUG_FACTORY #ifdef DEBUG_FACTORY
debug_logger->endElement("factory.createFastChildContext"); debug_logger->endElement();
#endif #endif
return ret; return ret;
...@@ -292,7 +292,7 @@ void OOXMLFactory::characters(OOXMLFastContextHandler * pHandler, ...@@ -292,7 +292,7 @@ void OOXMLFactory::characters(OOXMLFastContextHandler * pHandler,
} }
#ifdef DEBUG_FACTORY #ifdef DEBUG_FACTORY
debug_logger->endElement("factory.characters"); debug_logger->endElement();
#endif #endif
} }
......
...@@ -127,7 +127,7 @@ uno::Reference< xml::sax::XFastContextHandler > OOXMLFactory::createFastCh ...@@ -127,7 +127,7 @@ uno::Reference< xml::sax::XFastContextHandler > OOXMLFactory::createFastCh
} }
#ifdef DEBUG_FACTORY #ifdef DEBUG_FACTORY
debug_logger->endElement("factory.createFastChildContextFromFactory"); debug_logger->endElement();
#endif #endif
return aResult; return aResult;
...@@ -189,7 +189,7 @@ uno::Reference< xml::sax::XFastContextHandler > OOXMLFactory::createFastCh ...@@ -189,7 +189,7 @@ uno::Reference< xml::sax::XFastContextHandler > OOXMLFactory::createFastCh
<xsl:text> <xsl:text>
#ifdef DEBUG_FACTORY #ifdef DEBUG_FACTORY
debug_logger->endElement("factory.createFastChildContextFromStart"); debug_logger->endElement();
#endif #endif
return aResult; return aResult;
} }
......
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