mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
[CPP][Analyzers]Turn on warning 4244 (#22019)
* Turn on warning 4244 fix one occurrence of 4100 * changes from comments * toupper on wchar
This commit is contained in:
@@ -311,7 +311,7 @@ private:
|
||||
m_hotkey.modifiersMask |= MOD_ALT;
|
||||
}
|
||||
|
||||
m_hotkey.vkCode = hotkey.get_code();
|
||||
m_hotkey.vkCode = static_cast<WORD>(hotkey.get_code());
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user