File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments