diff options
author | George Hazan <ghazan@miranda.im> | 2022-07-30 18:15:50 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-07-30 18:15:50 +0300 |
commit | 1a4f30d78b1986f3f79558de725c8f34dae3ee75 (patch) | |
tree | 5f945598e45365b42a9c1820f8949a72e2f0d6c7 /plugins/WhenWasIt/src/WhenWasIt.cpp | |
parent | f1c1e760bed3593799a48e0b2ca12b5cbed3ba47 (diff) |
WhenWasIt: all dialogs -> UI classes
Diffstat (limited to 'plugins/WhenWasIt/src/WhenWasIt.cpp')
-rw-r--r-- | plugins/WhenWasIt/src/WhenWasIt.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/WhenWasIt/src/WhenWasIt.cpp b/plugins/WhenWasIt/src/WhenWasIt.cpp index 5f5d718ea5..8a97f7f513 100644 --- a/plugins/WhenWasIt/src/WhenWasIt.cpp +++ b/plugins/WhenWasIt/src/WhenWasIt.cpp @@ -21,7 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "stdafx.h"
HWND hBirthdaysDlg = nullptr;
-HWND hUpcomingDlg = nullptr;
MWindowList hAddBirthdayWndsList = nullptr;
CMPlugin g_plugin;
@@ -158,15 +157,6 @@ int CMPlugin::Unload() {
Log("%s", "Entering function " __FUNCTION__);
- if (hBirthdaysDlg)
- SendMessage(hBirthdaysDlg, WM_CLOSE, 0, 0);
-
- if (hUpcomingDlg)
- SendMessage(hUpcomingDlg, WM_CLOSE, 0, 0);
-
- WindowList_Broadcast(hAddBirthdayWndsList, WM_CLOSE, 0, 0);
- WindowList_Destroy(hAddBirthdayWndsList);
-
Log("%s", "Unhooking events ...");
UnhookEvents();
|