Kaydet (Commit) e8f980d1 authored tarafından August Sodora's avatar August Sodora

Remove unused code

üst 28b1abe1
...@@ -74,8 +74,6 @@ namespace writerfilter ...@@ -74,8 +74,6 @@ namespace writerfilter
void unoPropertySet(uno::Reference<beans::XPropertySet> rPropSet); void unoPropertySet(uno::Reference<beans::XPropertySet> rPropSet);
#endif #endif
void attribute(const std::string & name, const std::string & value); 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 #ifdef DEBUG_CONTEXT_HANDLER
void propertySet(writerfilter::Reference<Properties>::Pointer_t props, void propertySet(writerfilter::Reference<Properties>::Pointer_t props,
......
...@@ -166,18 +166,6 @@ namespace writerfilter ...@@ -166,18 +166,6 @@ namespace writerfilter
xmlFree( xmlName ); 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 #ifdef DEBUG_CONTEXT_HANDLER
class PropertySetDumpHandler : public Properties class PropertySetDumpHandler : public Properties
{ {
......
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