mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-27 12:09:32 +02:00
win32: remove unnecessary type cast check
git-svn-id: trunk@34108 -
This commit is contained in:
parent
8c14ee2386
commit
ee5256ca4a
@ -1279,7 +1279,7 @@ begin
|
||||
end
|
||||
else if lWinControl is TCustomCombobox then
|
||||
case HIWORD(WParam) of
|
||||
CBN_DROPDOWN: (lWinControl as TCustomCombobox).IntfGetItems;
|
||||
CBN_DROPDOWN: TCustomCombobox(lWinControl).IntfGetItems;
|
||||
CBN_EDITCHANGE: LMessage.Msg := LM_CHANGED;
|
||||
{ CBN_EDITCHANGE is only sent after the user changes the edit box.
|
||||
CBN_SELCHANGE is sent when the user changes the text by
|
||||
|
Loading…
Reference in New Issue
Block a user