ideintf: use more speaking name for toolbutton that seperates add/delete and up/down in collection editor

git-svn-id: trunk@32705 -
This commit is contained in:
vincents 2011-10-05 13:08:21 +00:00
parent 3ab33c3251
commit f4aaf29bf3
2 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ object CollectionPropertyEditorForm: TCollectionPropertyEditorForm
OnCreate = FormCreate
OnDestroy = FormDestroy
Position = poDefaultPosOnly
LCLVersion = '0.9.29'
LCLVersion = '0.9.31'
object ToolBar1: TToolBar
Left = 0
Height = 42
@ -40,22 +40,22 @@ object CollectionPropertyEditorForm: TCollectionPropertyEditorForm
ParentShowHint = False
ShowHint = True
end
object ToolButton3: TToolButton
object DividerToolButton: TToolButton
Left = 89
Top = 2
Width = 4
Caption = 'ToolButton3'
Width = 5
Caption = 'DividerToolButton'
Style = tbsDivider
end
object MoveUpButton: TToolButton
Left = 93
Left = 94
Top = 2
Action = actMoveUp
ParentShowHint = False
ShowHint = True
end
object MoveDownButton: TToolButton
Left = 137
Left = 138
Top = 2
Action = actMoveDown
ParentShowHint = False

View File

@ -20,7 +20,7 @@ type
ToolBar1: TToolBar;
AddButton: TToolButton;
DeleteButton: TToolButton;
ToolButton3: TToolButton;
DividerToolButton: TToolButton;
MoveUpButton: TToolButton;
MoveDownButton: TToolButton;
procedure actAddExecute(Sender: TObject);