summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-02 14:21:30 +0200
committerNoel Grandin <noel@peralex.com>2015-07-03 14:16:32 +0200
commit3b32c5898ff4e744d3f18b00421b433500426d74 (patch)
tree3b9c9ab876551b1ebf3ee27de53d0e85c0a0dbea /shell
parent025952f52767fb3508a6725468fe4b1e6ce4c9b1 (diff)
loplugin:unusedmethods sax,shell,stoc,basegfx
Change-Id: Ia5d63f7153e4b02acc5e206739316264d6d1184e
Diffstat (limited to 'shell')
-rw-r--r--shell/inc/internal/i_xml_parser_event_handler.hxx7
-rw-r--r--shell/source/unix/sysshell/recently_used_file_handler.cxx7
2 files changed, 0 insertions, 14 deletions
diff --git a/shell/inc/internal/i_xml_parser_event_handler.hxx b/shell/inc/internal/i_xml_parser_event_handler.hxx
index 77db6321b7e7..48dd746fbd2c 100644
--- a/shell/inc/internal/i_xml_parser_event_handler.hxx
+++ b/shell/inc/internal/i_xml_parser_event_handler.hxx
@@ -40,10 +40,6 @@ class i_xml_parser_event_handler
public:
virtual ~i_xml_parser_event_handler() {};
- virtual void start_document() = 0;
-
- virtual void end_document() = 0;
-
virtual void start_element(
const string_t& raw_name,
const string_t& local_name,
@@ -59,9 +55,6 @@ public:
virtual void ignore_whitespace(
const string_t& whitespaces) = 0;
- virtual void processing_instruction(
- const string_t& target, const string_t& data) = 0;
-
virtual void comment(const string_t& comment) = 0;
};
diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx
index e66d96d1ed51..0beba20e52c0 100644
--- a/shell/source/unix/sysshell/recently_used_file_handler.cxx
+++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx
@@ -266,16 +266,9 @@ namespace /* private */ {
current_element_ += character;
}
- virtual void start_document() SAL_OVERRIDE {}
- virtual void end_document() SAL_OVERRIDE {}
-
virtual void ignore_whitespace(const string_t& /*whitespaces*/) SAL_OVERRIDE
{}
- virtual void processing_instruction(
- const string_t& /*target*/, const string_t& /*data*/) SAL_OVERRIDE
- {}
-
virtual void comment(const string_t& /*comment*/) SAL_OVERRIDE
{}
private: