summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--writerfilter/inc/resourcemodel/TagLogger.hxx2
-rw-r--r--writerfilter/source/resourcemodel/TagLogger.cxx12
2 files changed, 0 insertions, 14 deletions
diff --git a/writerfilter/inc/resourcemodel/TagLogger.hxx b/writerfilter/inc/resourcemodel/TagLogger.hxx
index 2a13487ab835..44dc9015791e 100644
--- a/writerfilter/inc/resourcemodel/TagLogger.hxx
+++ b/writerfilter/inc/resourcemodel/TagLogger.hxx
@@ -74,8 +74,6 @@ namespace writerfilter
void unoPropertySet(uno::Reference<beans::XPropertySet> rPropSet);
#endif
void attribute(const std::string & name, const std::string & value);
- void attribute(const std::string & name, const ::rtl::OUString & value);
- void chars(const std::string & chars);
#ifdef DEBUG_CONTEXT_HANDLER
void propertySet(writerfilter::Reference<Properties>::Pointer_t props,
diff --git a/writerfilter/source/resourcemodel/TagLogger.cxx b/writerfilter/source/resourcemodel/TagLogger.cxx
index 6a0795cb4d5b..dcdd461ea5ad 100644
--- a/writerfilter/source/resourcemodel/TagLogger.cxx
+++ b/writerfilter/source/resourcemodel/TagLogger.cxx
@@ -166,18 +166,6 @@ namespace writerfilter
xmlFree( xmlName );
}
- void TagLogger::attribute(const string & name, const ::rtl::OUString & value)
- {
- attribute( name, OUStringToOString( value, RTL_TEXTENCODING_ASCII_US ).getStr() );
- }
-
- void TagLogger::chars(const string & rChars)
- {
- xmlChar* xmlChars = xmlCharStrdup( rChars.c_str() );
- xmlTextWriterWriteString( pWriter, xmlChars );
- xmlFree( xmlChars );
- }
-
#ifdef DEBUG_CONTEXT_HANDLER
class PropertySetDumpHandler : public Properties
{