summaryrefslogtreecommitdiffstats
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.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx
index 0d5ded137199..ee9e697e1f7f 100644
--- a/shell/source/unix/sysshell/recently_used_file_handler.cxx
+++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx
@@ -19,7 +19,6 @@
#include <sal/config.h>
-#include "boost/noncopyable.hpp"
#include "osl/process.h"
#include "rtl/ustring.hxx"
#include "rtl/string.hxx"
@@ -212,7 +211,7 @@ namespace /* private */ {
class unknown_xml_format_exception {};
class recently_used_file_filter:
- public i_xml_parser_event_handler, private boost::noncopyable
+ public i_xml_parser_event_handler
{
public:
explicit recently_used_file_filter(recently_used_item_list_t& item_list) :
@@ -229,6 +228,9 @@ namespace /* private */ {
named_command_map_[TAG_GROUP] = &recently_used_item::set_groups;
}
+ recently_used_file_filter(const recently_used_file_filter&) = delete;
+ recently_used_file_filter& operator=(const recently_used_file_filter&) = delete;
+
virtual void start_element(
const string_t& /*raw_name*/,
const string_t& local_name,