diff options
Diffstat (limited to 'shell/source/unix/sysshell')
-rw-r--r-- | shell/source/unix/sysshell/recently_used_file_handler.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx index d6be7b63f33b..9d19de32b555 100644 --- a/shell/source/unix/sysshell/recently_used_file_handler.cxx +++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx @@ -305,11 +305,9 @@ namespace /* private */ { class recent_item_writer { public: - recent_item_writer( - recently_used_file& file, - int max_items_to_write = MAX_RECENTLY_USED_ITEMS) : + recent_item_writer( recently_used_file& file ) : file_(file), - max_items_to_write_(max_items_to_write), + max_items_to_write_(MAX_RECENTLY_USED_ITEMS), items_written_(0) {} |