1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-06-28 20:05:08 +03:00

spelling: popupmenuopen

This commit is contained in:
Josh Soref 2018-02-28 04:55:43 +00:00
parent d38b410337
commit 073ef406dc
2 changed files with 4 additions and 4 deletions

View File

@ -4480,7 +4480,7 @@ UINT CmMainWindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *p
// Specify the notification service to the foreground process // Specify the notification service to the foreground process
void CmSetForegroundProcessToCnService() void CmSetForegroundProcessToCnService()
{ {
if (cm->MenuPopuping) if (cm->PopupMenuOpen)
{ {
return; return;
} }
@ -4657,7 +4657,7 @@ void CmShowTrayMenu(HWND hWnd)
return; return;
} }
cm->MenuPopuping = true; cm->PopupMenuOpen = true;
locked = cm->CmSetting.LockMode; locked = cm->CmSetting.LockMode;
easy = cm->CmSetting.EasyMode; easy = cm->CmSetting.EasyMode;
@ -4786,7 +4786,7 @@ void CmShowTrayMenu(HWND hWnd)
DestroyMenu(h); DestroyMenu(h);
cm->MenuPopuping = false; cm->PopupMenuOpen = false;
} }
// Hide or show the main window // Hide or show the main window

View File

@ -208,7 +208,7 @@ typedef struct CM
bool CheckedAndShowedAdminPackMessage; bool CheckedAndShowedAdminPackMessage;
INSTANCE *StartupMutex; INSTANCE *StartupMutex;
bool BadProcessChecked; bool BadProcessChecked;
bool MenuPopuping; bool PopupMenuOpen;
WINUI_UPDATE *Update; WINUI_UPDATE *Update;
} CM; } CM;