diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-03 10:41:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-04 10:34:59 +0200 |
commit | f4bcba6074f394cc0ce3b660308b3ee8e4714978 (patch) | |
tree | 621480dd699d02c89bbbc7207659938fa81cd6d6 /uui | |
parent | 2fc4af37bf321619cb6bd67cd051856301c7e074 (diff) |
loplugin:unusedenumconstants
Change-Id: I6069ca8874329e7f15903aa8ef51000c9c280d47
Reviewed-on: https://gerrit.libreoffice.org/52200
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/logindlg.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
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<LoginFlags> : is_typed_flags<LoginFlags, 0x01fe> {}; + template<> struct typed_flags<LoginFlags> : is_typed_flags<LoginFlags, 0x01de> {}; } |