diff options
author | George Hazan <ghazan@miranda.im> | 2022-02-09 19:57:44 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-02-09 19:57:44 +0300 |
commit | 819d4cd22fc5e6f8c3e8497c64346c13d76f04ad (patch) | |
tree | 37dbad1767e7f21d84234d92e2251c62cf015304 /plugins/TabSRMM/src/controls.cpp | |
parent | a43d5bcb1e0bdafb0193662168976aac989ed922 (diff) |
fixes #1950 (Remove notification engine from TabSRMM)
Diffstat (limited to 'plugins/TabSRMM/src/controls.cpp')
-rw-r--r-- | plugins/TabSRMM/src/controls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/controls.cpp b/plugins/TabSRMM/src/controls.cpp index ec93e0dc85..e2cfc1d90f 100644 --- a/plugins/TabSRMM/src/controls.cpp +++ b/plugins/TabSRMM/src/controls.cpp @@ -461,7 +461,7 @@ void CMenuBar::updateState(const HMENU hMenu) const MY_CheckMenu(hMenu, ID_VIEW_SHOWMULTISENDCONTACTLIST, dat->m_sendMode & SMODE_MULTIPLE);
MY_CheckMenu(hMenu, ID_VIEW_STAYONTOP, f.m_bSticky);
- ::EnableMenuItem(hMenu, 2, MF_BYPOSITION | (nen_options.bWindowCheck ? MF_GRAYED : MF_ENABLED));
+ ::EnableMenuItem(hMenu, 2, MF_BYPOSITION | (NEN::bWindowCheck ? MF_GRAYED : MF_ENABLED));
MY_CheckMenu(hMenu, ID_EVENTPOPUPS_DISABLEALLEVENTPOPUPS, !f.m_bDontReport && !f.m_bDontReportUnfocused && !f.m_bDontReportFocused && !f.m_bAlwaysReportInactive);
MY_CheckMenu(hMenu, ID_EVENTPOPUPS_SHOWPOPUPSIFWINDOWISMINIMIZED, f.m_bDontReport);
MY_CheckMenu(hMenu, ID_EVENTPOPUPS_SHOWPOPUPSFORALLINACTIVESESSIONS, f.m_bAlwaysReportInactive);
|