mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 14:40:24 +02:00
win32: send cut, paste, clear messages of ComboBox to LCL
git-svn-id: trunk@32485 -
This commit is contained in:
parent
2012691818
commit
aa32bc701d
@ -1009,7 +1009,6 @@ begin
|
||||
NotifyUserInput := False;
|
||||
|
||||
// WriteLn('Msg: ', WM_To_String(Msg));
|
||||
|
||||
WindowInfo := GetWin32WindowInfo(Window);
|
||||
if WindowInfo^.isChildEdit then
|
||||
begin
|
||||
@ -1041,6 +1040,7 @@ begin
|
||||
|
||||
// filter messages we want to pass on to LCL
|
||||
if (Msg <> WM_KILLFOCUS) and (Msg <> WM_SETFOCUS) and (Msg <> WM_NCDESTROY)
|
||||
and not ((Msg >= WM_CUT) and (Msg <= WM_CLEAR))
|
||||
and ((Msg < WM_KEYFIRST) or (Msg > WM_KEYLAST))
|
||||
and ((Msg < WM_MOUSEFIRST) or (Msg > WM_MOUSELAST)) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user