From 1ebc4e36a22c23a57ca2ce3d662141efdb99ad8e Mon Sep 17 00:00:00 2001 From: mattias Date: Fri, 24 Jan 2003 13:07:33 +0000 Subject: [PATCH] fixed TListBox.BorderStyle=bsNone git-svn-id: trunk@3823 - --- lcl/stdctrls.pp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lcl/stdctrls.pp b/lcl/stdctrls.pp index 83cf8acc3e..244c283f99 100644 --- a/lcl/stdctrls.pp +++ b/lcl/stdctrls.pp @@ -374,7 +374,7 @@ type constructor Create(AOwner : TComponent); override; destructor Destroy; override; procedure Clear; - property BorderStyle : TBorderStyle read FBorderStyle write SetBorderStyle; + property BorderStyle : TBorderStyle read FBorderStyle write SetBorderStyle default bsSingle; property Canvas: TCanvas read FCanvas; property ItemIndex : integer read GetItemIndex write SetItemIndex; property Items : TStrings read FItems write SetItems; @@ -1393,6 +1393,9 @@ end. { ============================================================================= $Log$ + Revision 1.75 2003/01/24 13:07:33 mattias + fixed TListBox.BorderStyle=bsNone + Revision 1.74 2003/01/01 10:46:59 mattias fixes for win32 listbox/combobox from Karl Brandt