mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
This commit is contained in:
parent
32861b84b9
commit
8831328081
1 changed files with 6 additions and 4 deletions
|
@ -390,6 +390,7 @@ LRESULT WINAPI ButtonWndProc_common(HWND hWnd, UINT uMsg,
|
|||
/* fall through */
|
||||
case WM_LBUTTONUP:
|
||||
#ifdef __REACTOS__
|
||||
{
|
||||
BOOL TellParent = FALSE; //// ReactOS see note below.
|
||||
#endif
|
||||
state = get_button_state( hWnd );
|
||||
|
@ -426,14 +427,15 @@ LRESULT WINAPI ButtonWndProc_common(HWND hWnd, UINT uMsg,
|
|||
BUTTON_NOTIFY_PARENT(hWnd, BN_CLICKED);
|
||||
#endif
|
||||
}
|
||||
#ifdef __REACTOS__
|
||||
ReleaseCapture();
|
||||
if (TellParent) BUTTON_NOTIFY_PARENT(hWnd, BN_CLICKED);
|
||||
#else
|
||||
#ifndef __REACTOS__
|
||||
else
|
||||
{
|
||||
ReleaseCapture();
|
||||
}
|
||||
#else
|
||||
ReleaseCapture();
|
||||
if (TellParent) BUTTON_NOTIFY_PARENT(hWnd, BN_CLICKED);
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue