Remove unused code

This commit is contained in:
August Sodora
2011-12-20 14:22:28 -05:00
parent 28b1abe11c
commit e8f980d10c
2 changed files with 0 additions and 14 deletions

View File

@@ -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,

View File

@@ -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
{