From 172257062881dab61b71367c8be31460e9b26cc9 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Jan 2017 08:10:26 +0100 Subject: New loplugin:conststringvar: shell Change-Id: Ie375164d9c461c25d256f321e4efd0aedc73a263 --- shell/source/unix/sysshell/recently_used_file_handler.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'shell') diff --git a/shell/source/unix/sysshell/recently_used_file_handler.cxx b/shell/source/unix/sysshell/recently_used_file_handler.cxx index 0d2aead07a79..cf7dad8e5c0f 100644 --- a/shell/source/unix/sysshell/recently_used_file_handler.cxx +++ b/shell/source/unix/sysshell/recently_used_file_handler.cxx @@ -321,8 +321,8 @@ namespace /* private */ { }; - const char* XML_HEADER = "\n\n"; - const char* XML_FOOTER = ""; + const char* const XML_HEADER = "\n\n"; + const char* const XML_FOOTER = ""; // assumes that the list is ordered decreasing @@ -385,9 +385,9 @@ namespace /* private */ { }; - const char* GROUP_OOO = "openoffice.org"; - const char* GROUP_STAR_OFFICE = "staroffice"; - const char* GROUP_STAR_SUITE = "starsuite"; + const char* const GROUP_OOO = "openoffice.org"; + const char* const GROUP_STAR_OFFICE = "staroffice"; + const char* const GROUP_STAR_SUITE = "starsuite"; void recently_used_item_list_add( -- cgit