mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 06:09:15 +02:00
win32: DoWindowProc: lWinControl <> nil check. Fixues issue #39553
This commit is contained in:
parent
0a0b688587
commit
d74a3b34c5
@ -2188,7 +2188,8 @@ begin
|
||||
end;
|
||||
|
||||
// no specific message found? try send a general msg
|
||||
lWinControl.Perform(CN_COMMAND, WParam, LParam);
|
||||
if lWinControl <> nil then
|
||||
lWinControl.Perform(CN_COMMAND, WParam, LParam);
|
||||
end;
|
||||
|
||||
WM_CTLCOLORMSGBOX..WM_CTLCOLORSTATIC:
|
||||
|
Loading…
Reference in New Issue
Block a user