mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 12:31:51 +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
|
||||
BEGIN
|
||||
//IDS_HELP_COMMAND "helpctr.exe>-FromStartHelp"
|
||||
IDS_HELP_COMMAND "https://www.reactos.org/"
|
||||
IDS_HELP_COMMAND "http://www.reactos.org/"
|
||||
END
|
||||
|
||||
IDA_TASKBAR ACCELERATORS
|
||||
|
|
|
@ -2653,13 +2653,13 @@ HandleTrayContextMenu:
|
|||
}
|
||||
|
||||
pszParameters = wcschr(szCommand, L'>');
|
||||
if (!pszParameters)
|
||||
return E_FAIL;
|
||||
if (pszParameters)
|
||||
{
|
||||
*pszParameters = 0;
|
||||
pszParameters++;
|
||||
}
|
||||
|
||||
*pszParameters = 0;
|
||||
pszParameters++;
|
||||
|
||||
ShellExecuteW(m_hWnd, NULL, szCommand, pszParameters, NULL, 0);
|
||||
ShellExecuteW(m_hWnd, NULL, szCommand, pszParameters, NULL, SW_SHOWNORMAL);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue