mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-03 09:21:10 +02:00
fixed combo chane
git-svn-id: trunk@5199 -
This commit is contained in:
parent
ce51572453
commit
ed4170793e
@ -168,9 +168,9 @@ end;
|
||||
|
||||
Call handler for "OnChange"-event if one is assigned.
|
||||
------------------------------------------------------------------------------}
|
||||
procedure TCustomComboBox.DoChange(var Msg);
|
||||
procedure TCustomComboBox.LMChange(var Msg);
|
||||
begin
|
||||
if Assigned(FOnChange) then FOnChange(Self);
|
||||
Change;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
@ -184,16 +184,6 @@ begin
|
||||
if Assigned(FOnChange) then FOnChange(Self);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
procedure TCustomComboBox.Loaded;
|
||||
|
||||
Called after stream reading.
|
||||
------------------------------------------------------------------------------}
|
||||
procedure TCustomComboBox.Loaded;
|
||||
begin
|
||||
inherited Loaded;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
procedure TCustomComboBox.Select;
|
||||
|
||||
@ -799,6 +789,9 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.35 2004/02/13 18:21:31 mattias
|
||||
fixed combo chane
|
||||
|
||||
Revision 1.34 2004/01/21 10:19:16 micha
|
||||
enable tabstops for controls; implement tabstops in win32 intf
|
||||
|
||||
|
@ -219,9 +219,8 @@ type
|
||||
procedure DestroyWnd; override;
|
||||
procedure DrawItem(Index: Integer; ARect: TRect;
|
||||
State: TOwnerDrawState); virtual;
|
||||
procedure DoChange(var msg); message LM_CHANGED;
|
||||
procedure LMChange(var msg); message LM_CHANGED;
|
||||
procedure Change; dynamic;
|
||||
procedure Loaded; override;
|
||||
procedure Select; dynamic;
|
||||
procedure DropDown; dynamic;
|
||||
procedure CloseUp; dynamic;
|
||||
@ -1496,6 +1495,9 @@ end.
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.131 2004/02/13 18:21:31 mattias
|
||||
fixed combo chane
|
||||
|
||||
Revision 1.130 2004/02/09 19:52:52 mattias
|
||||
implemented ByteOrder for TLazIntfImage and added call of to LM_SETFONT
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user