mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:33:07 +00:00
[EXPLORER]
- Fix showing the website when Help is selected from the start menu. svn path=/trunk/; revision=66988
This commit is contained in:
parent
d7d7ebb1b9
commit
897d797800
2 changed files with 7 additions and 7 deletions
|
@ -28,7 +28,7 @@ CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "explorer.exe.manifest"
|
||||||
STRINGTABLE
|
STRINGTABLE
|
||||||
BEGIN
|
BEGIN
|
||||||
//IDS_HELP_COMMAND "helpctr.exe>-FromStartHelp"
|
//IDS_HELP_COMMAND "helpctr.exe>-FromStartHelp"
|
||||||
IDS_HELP_COMMAND "https://www.reactos.org/"
|
IDS_HELP_COMMAND "http://www.reactos.org/"
|
||||||
END
|
END
|
||||||
|
|
||||||
IDA_TASKBAR ACCELERATORS
|
IDA_TASKBAR ACCELERATORS
|
||||||
|
|
|
@ -2653,13 +2653,13 @@ HandleTrayContextMenu:
|
||||||
}
|
}
|
||||||
|
|
||||||
pszParameters = wcschr(szCommand, L'>');
|
pszParameters = wcschr(szCommand, L'>');
|
||||||
if (!pszParameters)
|
if (pszParameters)
|
||||||
return E_FAIL;
|
{
|
||||||
|
*pszParameters = 0;
|
||||||
|
pszParameters++;
|
||||||
|
}
|
||||||
|
|
||||||
*pszParameters = 0;
|
ShellExecuteW(m_hWnd, NULL, szCommand, pszParameters, NULL, SW_SHOWNORMAL);
|
||||||
pszParameters++;
|
|
||||||
|
|
||||||
ShellExecuteW(m_hWnd, NULL, szCommand, pszParameters, NULL, 0);
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue