summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-13 15:57:41 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-14 10:15:12 +0100
commit8fd81bd96b0caf0b52eab69e64d0901e8e29f933 (patch)
tree1da059d3fddb9b8ffd3c1f52bd8cd8bb8e18d691 /sw
parent1a13c2793daae26f7c0abb0fb93ae6ca812b4518 (diff)
-Werror,-Wunused-member-function
Change-Id: Ic575f5bcca894639667f9893c5caf8163b124037
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/docnode/nodedump.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sw/source/core/docnode/nodedump.cxx b/sw/source/core/docnode/nodedump.cxx
index 482aac808296..da8f4b2a338a 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -38,7 +38,6 @@ public:
WriterHelper( xmlTextWriterPtr );
~WriterHelper();
operator xmlTextWriterPtr();
- xmlTextWriterPtr operator->();
void startElement( const char* element );
void endElement();
void writeFormatAttribute( const char* attribute, const char* format, ... )
@@ -77,11 +76,6 @@ WriterHelper::operator xmlTextWriterPtr()
return writer;
}
-xmlTextWriterPtr WriterHelper::operator->()
-{
- return writer;
-}
-
void WriterHelper::startElement( const char* element )
{
xmlTextWriterStartElement( writer, BAD_CAST( element ));