diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-16 12:44:06 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-16 12:44:06 +0300 |
commit | 39badfe98c0f8a750101926f91b5b3122dfdeb22 (patch) | |
tree | aeb661335b0a5b24decaaa7a5f5513c82bd4fe43 /protocols/YAMN/src/proto/pop3 | |
parent | 5bf3fd51f1dcdd275d38f35d7aebe7bd063eb3db (diff) |
more code cleaning
Diffstat (limited to 'protocols/YAMN/src/proto/pop3')
-rw-r--r-- | protocols/YAMN/src/proto/pop3/pop3opt.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/YAMN/src/proto/pop3/pop3opt.cpp b/protocols/YAMN/src/proto/pop3/pop3opt.cpp index f557f6daa7..c50a89cd2a 100644 --- a/protocols/YAMN/src/proto/pop3/pop3opt.cpp +++ b/protocols/YAMN/src/proto/pop3/pop3opt.cpp @@ -232,7 +232,7 @@ static INT_PTR CALLBACK DlgProcPOP3AccStatusOpt(HWND hDlg, UINT msg, WPARAM wPar iShift <<= 1;
}
- WindowList_BroadcastAsync(YAMNVar.MessageWnds, WM_YAMN_CHANGESTATUSOPTION, 0, 0);
+ WindowList_BroadcastAsync(MessageWnds, WM_YAMN_CHANGESTATUSOPTION, 0, 0);
EndDialog(hDlg, 0);
DestroyWindow(hDlg);
break;
@@ -355,7 +355,7 @@ public: ActualAccount = nullptr;
SendMessage(GetParent(m_hwnd), PSM_UNCHANGED, (WPARAM)m_hwnd, 0);
- WindowList_Add(YAMNVar.MessageWnds, m_hwnd);
+ WindowList_Add(MessageWnds, m_hwnd);
return true;
}
@@ -539,7 +539,7 @@ public: void OnDestroy() override
{
- WindowList_Remove(YAMNVar.MessageWnds, m_hwnd);
+ WindowList_Remove(MessageWnds, m_hwnd);
}
INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam) override
@@ -829,7 +829,7 @@ public: bool OnInitDialog() override
{
- WindowList_Add(YAMNVar.MessageWnds, m_hwnd);
+ WindowList_Add(MessageWnds, m_hwnd);
DlgEnableAccountPopup(false);
DlgShowAccountPopup();
@@ -848,7 +848,7 @@ public: void OnDestroy() override
{
- WindowList_Remove(YAMNVar.MessageWnds, m_hwnd);
+ WindowList_Remove(MessageWnds, m_hwnd);
}
void onSelChange_Account(CCtrlCombo *)
|