diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 12:33:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-06 12:33:29 +0100 |
commit | d964a43f37056d4f478fb2c69fa1637b6a14ed26 (patch) | |
tree | 85d54c3f8718d1922e179cb5e1ccd47cc3e0d7a7 /unotools | |
parent | 7d4dcb08bcf96bde0eddab14ec45cbe37eee720b (diff) |
loplugin:stringconstant: elide explicit ctor usage (manually due to macros)
Change-Id: Id65077d150fdb9785efeb9a2878d6ae643433b9d
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/dynamicmenuoptions.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unotools/source/config/dynamicmenuoptions.cxx b/unotools/source/config/dynamicmenuoptions.cxx index d09ddad8acc9..e7799ba3018d 100644 --- a/unotools/source/config/dynamicmenuoptions.cxx +++ b/unotools/source/config/dynamicmenuoptions.cxx @@ -43,9 +43,9 @@ using namespace ::com::sun::star::beans; #define ROOTNODE_MENUS OUString("Office.Common/Menus/") #define PATHDELIMITER "/" -#define SETNODE_NEWMENU OUString("New") -#define SETNODE_WIZARDMENU OUString("Wizard") -#define SETNODE_HELPBOOKMARKS OUString("HelpBookmarks") +#define SETNODE_NEWMENU "New" +#define SETNODE_WIZARDMENU "Wizard" +#define SETNODE_HELPBOOKMARKS "HelpBookmarks" #define PROPERTYNAME_URL DYNAMICMENU_PROPERTYNAME_URL #define PROPERTYNAME_TITLE DYNAMICMENU_PROPERTYNAME_TITLE |