summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLFactory.cxx
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-20 20:38:45 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-06-20 20:38:45 +0200
commitff2f7926a5f818981e77869bf41a45e4fa56f521 (patch)
tree3bbccec1edbe9d8c90603e2f0eff921ff29b27a2 /writerfilter/source/ooxml/OOXMLFactory.cxx
parent68ef83dbd75b7f25466e007140aedb9ed3694e50 (diff)
gnumake4: switching gbuildization
* mostly switching to gnumake4/writerfilter10 gbuild implementation (thanks mst, hb)
Diffstat (limited to 'writerfilter/source/ooxml/OOXMLFactory.cxx')
-rw-r--r--writerfilter/source/ooxml/OOXMLFactory.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFactory.cxx b/writerfilter/source/ooxml/OOXMLFactory.cxx
index 440aee65164b..0dc29db2f0de 100644
--- a/writerfilter/source/ooxml/OOXMLFactory.cxx
+++ b/writerfilter/source/ooxml/OOXMLFactory.cxx
@@ -260,7 +260,7 @@ void OOXMLFactory::attributes(OOXMLFastContextHandler * pHandler,
uno::Reference< xml::sax::XFastContextHandler>
OOXMLFactory::createFastChildContext(OOXMLFastContextHandler * pHandler,
- sal_Int32 Element)
+ Token_t Element)
{
#ifdef DEBUG_FACTORY
debug_logger->startElement("factory.createFastChildContext");
@@ -305,35 +305,35 @@ void OOXMLFactory::characters(OOXMLFastContextHandler * pHandler,
#endif
}
-void OOXMLFactory::startAction(OOXMLFastContextHandler * pHandler, sal_Int32 /*nToken*/)
+void OOXMLFactory::startAction(OOXMLFastContextHandler * pHandler, Token_t /*nToken*/)
{
Id nDefine = pHandler->getDefine();
OOXMLFactory_ns::Pointer_t pFactory = getFactoryForNamespace(nDefine);
if (pFactory.get() != NULL)
{
-#ifdef DEBUG_FACTORY
+#ifdef DEBUG_ELEMENT
debug_logger->startElement("factory.startAction");
#endif
pFactory->startAction(pHandler);
-#ifdef DEBUG_FACTORY
+#ifdef DEBUG_ELEMENT
debug_logger->endElement();
#endif
}
}
-void OOXMLFactory::endAction(OOXMLFastContextHandler * pHandler, sal_Int32 /*nToken*/)
+void OOXMLFactory::endAction(OOXMLFastContextHandler * pHandler, Token_t /*nToken*/)
{
Id nDefine = pHandler->getDefine();
OOXMLFactory_ns::Pointer_t pFactory = getFactoryForNamespace(nDefine);
if (pFactory.get() != NULL)
{
-#ifdef DEBUG_FACTORY
+#ifdef DEBUG_ELEMENT
debug_logger->startElement("factory.endAction");
#endif
pFactory->endAction(pHandler);
-#ifdef DEBUG_FACTORY
+#ifdef DEBUG_ELEMENT
debug_logger->endElement();
#endif
}
@@ -351,7 +351,7 @@ void OOXMLFactory_ns::charactersAction(OOXMLFastContextHandler *, const ::rtl::O
{
}
-void OOXMLFactory_ns::attributeAction(OOXMLFastContextHandler *, sal_Int32, OOXMLValue::Pointer_t)
+void OOXMLFactory_ns::attributeAction(OOXMLFastContextHandler *, Token_t, OOXMLValue::Pointer_t)
{
}