diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-19 09:48:19 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-19 10:44:05 +0000 |
commit | 1658bd231bc662504a072097dc614c29fe2e116d (patch) | |
tree | 00e1036c841aa7c228d443c34cdc5e88b8054ea3 /vcl/source/control | |
parent | 4f86b7a86cae630c19f6f0d1b4d6672c25e2eb3c (diff) |
loplugin:unusedenumvalues
Change-Id: I9dcc9f73af6db5b4f7cc946bc28931e5c230b34c
Reviewed-on: https://gerrit.libreoffice.org/29012
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/control')
-rw-r--r-- | vcl/source/control/button.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/control/button.cxx b/vcl/source/control/button.cxx index 9c7c2aad2687..724b37ac156b 100644 --- a/vcl/source/control/button.cxx +++ b/vcl/source/control/button.cxx @@ -145,8 +145,7 @@ OUString Button::GetStandardText( StandardButtonType eButton ) { SV_BUTTONTEXT_MORE, "~More" }, { SV_BUTTONTEXT_IGNORE, "~Ignore" }, { SV_BUTTONTEXT_ABORT, "~Abort" }, - { SV_BUTTONTEXT_LESS, "~Less" }, - { SV_BUTTONTEXT_RESET, "R~eset" } + { SV_BUTTONTEXT_LESS, "~Less" } }; ResMgr* pResMgr = ImplGetResMgr(); |