diff options
author | George Hazan <george.hazan@gmail.com> | 2024-06-26 14:50:16 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-06-26 14:50:16 +0300 |
commit | 4df8dd732dae3a6143ad1cd419245d68858a0222 (patch) | |
tree | 987e5814b640d09163686d95e15034f419647aa9 /src/core | |
parent | bd7617e036ecae865e68fc305bfff2823981fe0e (diff) |
fixes #4493 (StdUserInfo: невозможно закрыть окно, если плагин выгружен)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stduserinfo/src/userinfo.cpp | 2 |
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;
}
|