From 073ef406dc26c14edfccf7b4f7ecc198da9c4ea5 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 04:55:43 +0000 Subject: [PATCH] spelling: popupmenuopen --- src/Cedar/CM.c | 6 +++--- src/Cedar/CMInner.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Cedar/CM.c b/src/Cedar/CM.c index f7c83f9b..673bda69 100644 --- a/src/Cedar/CM.c +++ b/src/Cedar/CM.c @@ -4480,7 +4480,7 @@ UINT CmMainWindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *p // Specify the notification service to the foreground process void CmSetForegroundProcessToCnService() { - if (cm->MenuPopuping) + if (cm->PopupMenuOpen) { return; } @@ -4657,7 +4657,7 @@ void CmShowTrayMenu(HWND hWnd) return; } - cm->MenuPopuping = true; + cm->PopupMenuOpen = true; locked = cm->CmSetting.LockMode; easy = cm->CmSetting.EasyMode; @@ -4786,7 +4786,7 @@ void CmShowTrayMenu(HWND hWnd) DestroyMenu(h); - cm->MenuPopuping = false; + cm->PopupMenuOpen = false; } // Hide or show the main window diff --git a/src/Cedar/CMInner.h b/src/Cedar/CMInner.h index b789df46..2d2820da 100644 --- a/src/Cedar/CMInner.h +++ b/src/Cedar/CMInner.h @@ -208,7 +208,7 @@ typedef struct CM bool CheckedAndShowedAdminPackMessage; INSTANCE *StartupMutex; bool BadProcessChecked; - bool MenuPopuping; + bool PopupMenuOpen; WINUI_UPDATE *Update; } CM;