Added procedure ListBox.Clear (changes made by christer, added to cvs

by stoppok)

git-svn-id: trunk@5 -
This commit is contained in:
lazarus 2000-07-16 12:39:53 +00:00
parent c103f649b3
commit c730c47bd0

View File

@ -171,4 +171,12 @@ begin
CNSendMessage(LM_SETITEMINDEX, Self, Pointer(Val));
end;
{------------------------------------------------------------------------------}
{ procedure TCustomListBox.Clear }
{------------------------------------------------------------------------------}
procedure TCustomListBox.Clear;
begin
FItems.Clear;
end;