diff options
author | George Hazan <george.hazan@gmail.com> | 2024-06-26 14:19:35 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-06-26 14:19:35 +0300 |
commit | bd7617e036ecae865e68fc305bfff2823981fe0e (patch) | |
tree | ca1720d39f1327b091081774f2b6fafa8eefbad1 /plugins | |
parent | 64f256afcd35245b22f1cf22eda32f9bc64d201e (diff) |
fixes #4494 (UInfoEx: падение при выгрузке)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index f14314f984..8003bc4733 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -368,7 +368,7 @@ static int OnDeleteContact(WPARAM wParam, LPARAM) static int OnShutdown(WPARAM, LPARAM)
{
- WindowList_BroadcastAsync(g_hWindowList, WM_DESTROY, 0, 0);
+ WindowList_Broadcast(g_hWindowList, WM_CLOSE, 0, 0);
return 0;
}
|