Kaydet (Commit) 4a93e2d9 authored tarafından Miklos Vajna's avatar Miklos Vajna

writerfilter: fix dbglevel=2 build

Change-Id: Ifd471e49cb167af48a9173762812164890e00791
üst c5613c51
...@@ -273,6 +273,10 @@ public: ...@@ -273,6 +273,10 @@ public:
void ooxmlidsToXML(::std::iostream & out); void ooxmlidsToXML(::std::iostream & out);
#ifdef DEBUG_DOMAINMAPPER
std::string fastTokenToId(sal_uInt32 nToken);
#endif
}} }}
#endif // INCLUDED_WRITERFILTER_INC_OOXML_OOXMLDOCUMENT_HXX #endif // INCLUDED_WRITERFILTER_INC_OOXML_OOXMLDOCUMENT_HXX
......
...@@ -81,7 +81,7 @@ TokenToIdMapPointer OOXMLFactory_ns::getTokenToIdMap(Id nId) ...@@ -81,7 +81,7 @@ TokenToIdMapPointer OOXMLFactory_ns::getTokenToIdMap(Id nId)
} }
#ifdef DEBUG_DOMAINMAPPER #ifdef DEBUG_DOMAINMAPPER
string OOXMLFactory_ns::getDefineName(Id /*nId*/) const std::string OOXMLFactory_ns::getDefineName(Id /*nId*/) const
{ {
return ""; return "";
} }
......
...@@ -98,7 +98,7 @@ public: ...@@ -98,7 +98,7 @@ public:
virtual void endAction(OOXMLFastContextHandler * pHandler); virtual void endAction(OOXMLFastContextHandler * pHandler);
virtual void attributeAction(OOXMLFastContextHandler * pHandler, Token_t nToken, OOXMLValue::Pointer_t pValue); virtual void attributeAction(OOXMLFastContextHandler * pHandler, Token_t nToken, OOXMLValue::Pointer_t pValue);
#ifdef DEBUG_DOMAINMAPPER #ifdef DEBUG_DOMAINMAPPER
virtual string getDefineName(Id nId) const; virtual std::string getDefineName(Id nId) const;
#endif #endif
AttributeToResourceMapPointer getAttributeToResourceMap(Id nId); AttributeToResourceMapPointer getAttributeToResourceMap(Id nId);
......
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