diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:20:09 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 13:20:09 +0000 |
commit | 386e756f59e27ba4cf4add2b8afd1e49e8881308 (patch) | |
tree | b2c2bc4677e883008e297fcd9d60d5c5dfce7290 /shell/source/unix | |
parent | 726120a4074b90596379e86ceb049cc24058bbf1 (diff) |
INTEGRATION: CWS warnings01 (1.5.14); FILE MERGED
2005/10/26 15:08:24 pl 1.5.14.1: #i55991# remove warnings for solaris platform
Diffstat (limited to 'shell/source/unix')
-rw-r--r-- | shell/source/unix/sysshell/recently_used_file_handler.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx index ea219e8e81d0..605324119c60 100644 --- a/shell/source/unix/sysshell/recently_used_file_handler.cxx +++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx @@ -4,9 +4,9 @@ * * $RCSfile: recently_used_file_handler.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-07 19:56:25 $ + * last change: $Author: hr $ $Date: 2006-06-19 14:20:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -162,13 +162,13 @@ namespace /* private */ { timestamp_ = t; } - void set_is_private(const string_t& character) + void set_is_private(const string_t& /*character*/) { is_private_ = true; } void set_groups(const string_t& character) { groups_.push_back(character); } - void set_nothing(const string_t& character) + void set_nothing(const string_t& /*character*/) {} bool has_groups() const @@ -204,7 +204,7 @@ namespace /* private */ { string_container_t::const_iterator iter = groups_.begin(); string_container_t::const_iterator iter_end = groups_.end(); - for (/**/; iter != iter_end; ++iter) + for ( ; iter != iter_end; ++iter) write_xml_tag(TAG_GROUP, (*iter), file); write_xml_end_tag(TAG_GROUPS, file); @@ -276,15 +276,15 @@ namespace /* private */ { } virtual void start_element( - const string_t& raw_name, + const string_t& /*raw_name*/, const string_t& local_name, - const xml_tag_attribute_container_t& attributes) + const xml_tag_attribute_container_t& /*attributes*/) { 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) { if (named_command_map_.find(local_name) != named_command_map_.end()) (item_->*named_command_map_[local_name])(current_element_); @@ -311,14 +311,14 @@ namespace /* private */ { virtual void start_document() {} virtual void end_document() {} - virtual void ignore_whitespace(const string_t& whitespaces) + virtual void ignore_whitespace(const string_t& /*whitespaces*/) {} virtual void processing_instruction( - const string_t& target, const string_t& data) + const string_t& /*target*/, const string_t& /*data*/) {} - virtual void comment(const string_t& comment) + virtual void comment(const string_t& /*comment*/) {} private: recently_used_item* item_; |