summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2024-06-26 14:50:16 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-06-26 14:50:16 +0300
commit4df8dd732dae3a6143ad1cd419245d68858a0222 (patch)
tree987e5814b640d09163686d95e15034f419647aa9 /src/core
parentbd7617e036ecae865e68fc305bfff2823981fe0e (diff)
fixes #4493 (StdUserInfo: невозможно закрыть окно, если плагин выгружен)
Diffstat (limited to 'src/core')
-rw-r--r--src/core/stduserinfo/src/userinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stduserinfo/src/userinfo.cpp b/src/core/stduserinfo/src/userinfo.cpp
index c1233396ce..fc3d37bab5 100644
--- a/src/core/stduserinfo/src/userinfo.cpp
+++ b/src/core/stduserinfo/src/userinfo.cpp
@@ -617,7 +617,7 @@ static INT_PTR ShowDetailsDialogCommand(WPARAM hContact, LPARAM)
static int ShutdownUserInfo(WPARAM, LPARAM)
{
- WindowList_Broadcast(hWindowList, WM_DESTROY, 0, 0);
+ WindowList_Broadcast(hWindowList, WM_CLOSE, 0, 0);
WindowList_Destroy(hWindowList);
return 0;
}