mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
gcc is crying again
This commit is contained in:
parent
482eb909fe
commit
309f7e9443
1 changed files with 1 additions and 1 deletions
|
@ -1857,7 +1857,7 @@ public:
|
|||
// When there is no control found, go to the first or last (depending on tab vs shift-tab)
|
||||
int current = direction > 0 ? 0 : (_countof(Controls) - 1);
|
||||
HWND hActive = ::GetFocus();
|
||||
for (int n = 0; n < _countof(Controls); ++n)
|
||||
for (size_t n = 0; n < _countof(Controls); ++n)
|
||||
{
|
||||
if (hActive == Controls[n])
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue