summaryrefslogtreecommitdiff
path: root/shell/source/unix/sysshell/recently_used_file_handler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/source/unix/sysshell/recently_used_file_handler.cxx')
-rw-r--r--shell/source/unix/sysshell/recently_used_file_handler.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx
index b5dbcc10cf7b..e6f7fad0193b 100644
--- a/shell/source/unix/sysshell/recently_used_file_handler.cxx
+++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx
@@ -227,13 +227,13 @@ namespace /* private */ {
virtual void start_element(
const string_t& /*raw_name*/,
const string_t& local_name,
- const xml_tag_attribute_container_t& /*attributes*/)
+ const xml_tag_attribute_container_t& /*attributes*/) SAL_OVERRIDE
{
if ((local_name == TAG_RECENT_ITEM) && (NULL == item_))
item_ = new recently_used_item;
}
- virtual void end_element(const string_t& /*raw_name*/, const string_t& local_name)
+ virtual void end_element(const string_t& /*raw_name*/, const string_t& local_name) SAL_OVERRIDE
{
// check for end tags w/o start tag
if( local_name != TAG_RECENT_FILES && NULL == item_ )
@@ -255,23 +255,23 @@ namespace /* private */ {
current_element_.clear();
}
- virtual void characters(const string_t& character)
+ virtual void characters(const string_t& character) SAL_OVERRIDE
{
if (character != "\n")
current_element_ += character;
}
- virtual void start_document() {}
- virtual void end_document() {}
+ virtual void start_document() SAL_OVERRIDE {}
+ virtual void end_document() SAL_OVERRIDE {}
- virtual void ignore_whitespace(const string_t& /*whitespaces*/)
+ virtual void ignore_whitespace(const string_t& /*whitespaces*/) SAL_OVERRIDE
{}
virtual void processing_instruction(
- const string_t& /*target*/, const string_t& /*data*/)
+ const string_t& /*target*/, const string_t& /*data*/) SAL_OVERRIDE
{}
- virtual void comment(const string_t& /*comment*/)
+ virtual void comment(const string_t& /*comment*/) SAL_OVERRIDE
{}
private:
recently_used_item* item_;