mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
refactor: Make MessageBoxFlags enum underlying type unsigned
This commit is contained in:
parent
b25a752dfd
commit
1111d33532
2 changed files with 1 additions and 3 deletions
|
@ -25,8 +25,7 @@ class CClientUIInterface
|
|||
{
|
||||
public:
|
||||
/** Flags for CClientUIInterface::ThreadSafeMessageBox */
|
||||
enum MessageBoxFlags
|
||||
{
|
||||
enum MessageBoxFlags : uint32_t {
|
||||
ICON_INFORMATION = 0,
|
||||
ICON_WARNING = (1U << 0),
|
||||
ICON_ERROR = (1U << 1),
|
||||
|
|
|
@ -66,7 +66,6 @@ implicit-integer-sign-change:compat/stdin.cpp
|
|||
implicit-integer-sign-change:compressor.h
|
||||
implicit-integer-sign-change:crypto/
|
||||
implicit-integer-sign-change:key.cpp
|
||||
implicit-integer-sign-change:noui.cpp
|
||||
implicit-integer-sign-change:policy/fees.cpp
|
||||
implicit-integer-sign-change:prevector.h
|
||||
implicit-integer-sign-change:script/bitcoinconsensus.cpp
|
||||
|
|
Loading…
Reference in a new issue