refactor: Make MessageBoxFlags enum underlying type unsigned

This commit is contained in:
MarcoFalke
2022-01-28 12:31:41 +01:00
parent b25a752dfd
commit 1111d33532
2 changed files with 1 additions and 3 deletions

View File

@@ -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),