mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NETSHELL] Don't use hardcoded values.
This commit is contained in:
parent
5ecabcce59
commit
af4bdd4388
1 changed files with 2 additions and 2 deletions
|
@ -232,7 +232,7 @@ UpdateLanStatus(HWND hwndDlg, LANSTATUSUI_CONTEXT * pContext)
|
|||
nid.cbSize = sizeof(nid);
|
||||
nid.uID = pContext->uID;
|
||||
nid.hWnd = pContext->hwndStatusDlg;
|
||||
nid.uVersion = 3;
|
||||
nid.uVersion = NOTIFYICON_VERSION;
|
||||
|
||||
if (pContext->pNet->GetProperties(&pProperties) == S_OK)
|
||||
{
|
||||
|
@ -1041,7 +1041,7 @@ CLanStatus::InitializeNetTaskbarNotifications()
|
|||
nid.cbSize = sizeof(nid);
|
||||
nid.uID = Index++;
|
||||
nid.uFlags = NIF_MESSAGE;
|
||||
nid.uVersion = 3;
|
||||
nid.uVersion = NOTIFYICON_VERSION;
|
||||
nid.uCallbackMessage = WM_SHOWSTATUSDLG;
|
||||
nid.hWnd = hwndDlg;
|
||||
|
||||
|
|
Loading…
Reference in a new issue