Skip to content

Commit b5ea9f1

Browse files
committed
Fixed typo.
1 parent ae62881 commit b5ea9f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Win32Utils.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ namespace Win32Utils
478478

479479
const UINT & id = info.wID; //GetMenuItemID(hMenu, pos);
480480

481-
bool IsSeparator = ((info.fType & MFT_SEPARATOR) != 0);
481+
bool isSeparator = ((info.fType & MFT_SEPARATOR) != 0);
482482
bool isDisabled = ((info.fState & MFS_DISABLED) != 0);
483483
bool isChecked = ((info.fState & MFS_CHECKED) != 0);
484484

@@ -487,7 +487,7 @@ namespace Win32Utils
487487
char title_utf8[BUFFER_SIZE] = {0};
488488
char tmp[BUFFER_SIZE] = {0};
489489
wchar_t tmpW[BUFFER_SIZE] = {0};
490-
if (IsSeparator)
490+
if (isSeparator)
491491
{
492492
strcpy(title_utf8, "------------------------");
493493
}
@@ -507,7 +507,7 @@ namespace Win32Utils
507507
description_utf8.append(tmp);
508508
if (isChecked)
509509
description_utf8.append(", checked");
510-
if (isDisabled && !IsSeparator)
510+
if (isDisabled && !isSeparator)
511511
description_utf8.append(", disabled");
512512
description_utf8.append(")");
513513

0 commit comments

Comments
 (0)