summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-06-14 16:26:18 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-06-14 16:26:18 +0200
commitfa3547d5159afba0d2cb4acc6671b4e704aa4884 (patch)
tree1b01e20236c411176cab3921289f18aaf1e289ff
parent77251b4d7a15c16afca15a64dbe74e1d7aee98e7 (diff)
Some more cleanup
-rw-r--r--src/lib/PGPLUSDocument.cpp2
-rw-r--r--src/lib/PGPLUSParser.cpp16
-rw-r--r--src/lib/PGPLUSParser.h3
3 files changed, 1 insertions, 20 deletions
diff --git a/src/lib/PGPLUSDocument.cpp b/src/lib/PGPLUSDocument.cpp
index ef4f77f..5c26457 100644
--- a/src/lib/PGPLUSDocument.cpp
+++ b/src/lib/PGPLUSDocument.cpp
@@ -39,7 +39,7 @@ bool libpgplus::PGPLUSDocument::isSupported(WPXInputStream *input)
/**
Parses the input stream content. It will make callbacks to the functions provided by a
-PGPLUSPaintInterface class implementation when needed. This is often commonly called the
+WPGPaintInterface class implementation when needed. This is often commonly called the
'main parsing routine'.
\param input The input stream
\param painter A PGPLUSPainterInterface implementation
diff --git a/src/lib/PGPLUSParser.cpp b/src/lib/PGPLUSParser.cpp
index 860681e..1b29a3f 100644
--- a/src/lib/PGPLUSParser.cpp
+++ b/src/lib/PGPLUSParser.cpp
@@ -47,20 +47,4 @@ bool libpgplus::PGPLUSParser::parse()
return false;
}
-bool libpgplus::PGPLUSParser::parseContents(WPXInputStream *input, libpgplus::PGPLUSCollector *collector)
-{
- return false;
-}
-
-bool libpgplus::PGPLUSParser::parseQuill(WPXInputStream *input, libpgplus::PGPLUSCollector *collector)
-{
- return false;
-}
-
-bool libpgplus::PGPLUSParser::parseEscher(WPXInputStream *input, libpgplus::PGPLUSCollector *collector)
-{
- return false;
-}
-
-
/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
diff --git a/src/lib/PGPLUSParser.h b/src/lib/PGPLUSParser.h
index 32eac84..4107bba 100644
--- a/src/lib/PGPLUSParser.h
+++ b/src/lib/PGPLUSParser.h
@@ -48,9 +48,6 @@ private:
PGPLUSParser();
PGPLUSParser(const PGPLUSParser &);
PGPLUSParser &operator=(const PGPLUSParser &);
- bool parseContents(WPXInputStream *input, PGPLUSCollector *collector);
- bool parseQuill(WPXInputStream *input, PGPLUSCollector *collector);
- bool parseEscher(WPXInputStream *input, PGPLUSCollector *collector);
WPXInputStream *m_input;
PGPLUSCollector *m_collector;