From f4bcba6074f394cc0ce3b660308b3ee8e4714978 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 3 Apr 2018 10:41:22 +0200 Subject: loplugin:unusedenumconstants Change-Id: I6069ca8874329e7f15903aa8ef51000c9c280d47 Reviewed-on: https://gerrit.libreoffice.org/52200 Tested-by: Jenkins Reviewed-by: Noel Grandin --- uui/source/logindlg.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'uui/source') diff --git a/uui/source/logindlg.hxx b/uui/source/logindlg.hxx index 85b2ef3f1f99..f2228944d79c 100644 --- a/uui/source/logindlg.hxx +++ b/uui/source/logindlg.hxx @@ -33,13 +33,12 @@ enum class LoginFlags { NoPassword = 0x0004, // hide "password" NoSavePassword = 0x0008, // hide "save password" NoErrorText = 0x0010, // hide message - PathReadonly = 0x0020, // "path" readonly UsernameReadonly = 0x0040, // "name" readonly NoAccount = 0x0080, // hide "account" NoUseSysCreds = 0x0100, // hide "use system credentials" }; namespace o3tl { - template<> struct typed_flags : is_typed_flags {}; + template<> struct typed_flags : is_typed_flags {}; } -- cgit