mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:05:49 +00:00
[0.4.13][NETSHELL] Repair "Network Connection 'State' does nothing" CORE-18844
It regressed in this branch by 0.4.13-release-120-g19c57cab4d
( in master it was by 0.4.15-dev-5613-g7a17c7d9ad
) It was the only place within the ros sources where message WM_SHOWSTATUSDLG was sent also from code. And therefore the only one that needed to be updated as well. Fix picked from: 0.4.15-dev-5712-ga5cd42c1ea
This commit is contained in:
parent
2276efae83
commit
e90a7ca3e9
1 changed files with 1 additions and 1 deletions
|
@ -944,7 +944,7 @@ CLanStatus::ShowStatusDialogByCLSID(const GUID *pguidCmdGroup)
|
||||||
{
|
{
|
||||||
if (IsEqualGUID(pItem->guidItem, *pguidCmdGroup))
|
if (IsEqualGUID(pItem->guidItem, *pguidCmdGroup))
|
||||||
{
|
{
|
||||||
SendMessageW(pItem->hwndDlg, WM_SHOWSTATUSDLG, 0, WM_LBUTTONDOWN);
|
SendMessageW(pItem->hwndDlg, WM_SHOWSTATUSDLG, 0, WM_LBUTTONUP);
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
pItem = pItem->pNext;
|
pItem = pItem->pNext;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue