mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[WINHLP32] Sync with Wine Staging 1.9.16. CORE-11866
svn path=/trunk/; revision=72443
This commit is contained in:
parent
444f693e31
commit
5e7598a6d2
3 changed files with 4 additions and 3 deletions
|
@ -598,7 +598,7 @@ static void CALLBACK MACRO_JumpID(LPCSTR lpszPathWindow, LPCSTR topic_id)
|
|||
LPSTR ptr;
|
||||
|
||||
WINE_TRACE("(%s, %s)\n", debugstr_a(lpszPathWindow), debugstr_a(topic_id));
|
||||
if ((ptr = strchr(lpszPathWindow, '>')) != NULL)
|
||||
if (lpszPathWindow && (ptr = strchr(lpszPathWindow, '>')) != NULL)
|
||||
{
|
||||
LPSTR tmp;
|
||||
size_t sz;
|
||||
|
|
|
@ -501,7 +501,7 @@ WINHELP_WINDOW* WINHELP_GrabWindow(WINHELP_WINDOW* win)
|
|||
|
||||
/***********************************************************************
|
||||
*
|
||||
* WINHELP_RelaseWindow
|
||||
* WINHELP_ReleaseWindow
|
||||
*/
|
||||
BOOL WINHELP_ReleaseWindow(WINHELP_WINDOW* win)
|
||||
{
|
||||
|
@ -968,6 +968,7 @@ static BOOL WINHELP_CheckPopup(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam
|
|||
popup = Globals.active_popup;
|
||||
Globals.active_popup = NULL;
|
||||
WINHELP_ReleaseWindow(popup);
|
||||
if (lret) *lret = 1;
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
|
|
|
@ -240,7 +240,7 @@ reactos/base/applications/extrac32 # Synced to WineStaging-1.9.11
|
|||
reactos/base/applications/iexplore # Synced to WineStaging-1.9.11
|
||||
reactos/base/applications/notepad # Forked at Wine-20041201
|
||||
reactos/base/applications/regedit # Out of sync
|
||||
reactos/base/applications/winhlp32 # Synced to WineStaging-1.9.11
|
||||
reactos/base/applications/winhlp32 # Synced to WineStaging-1.9.16
|
||||
reactos/base/applications/wordpad # Synced to WineStaging-1.9.11
|
||||
reactos/base/services/rpcss # Synced to WineStaging-1.9.11
|
||||
reactos/base/system/expand # Synced to WineStaging-1.9.11
|
||||
|
|
Loading…
Reference in a new issue