Fix inconsistent window and button captions (bug #864)

This commit is contained in:
Ansgar Becker
2008-11-23 11:37:52 +00:00
parent 9ba3b630f5
commit 1a2478643c

View File

@ -1106,17 +1106,17 @@ begin
femFieldUpdate:
begin
ButtonOK.Caption := 'Update Column';
ButtonOK.Caption := 'Update column';
end;
femFieldAdd:
begin
ButtonOK.Caption := 'Add Column';
ButtonOK.Caption := 'Add column';
end;
femIndexEditor:
begin
ButtonOK.Caption := 'Update Indexes';
ButtonOK.Caption := 'Update indexes';
KeySelected := ComboBoxKeys.ItemIndex > -1;
// Disable the button if
// 1) a key was selected and no columns are listed on the left
@ -1138,7 +1138,6 @@ begin
end;
end;
Caption := Mainform.ChildWin.SessionName + ' - ' + ButtonOK.Caption;
end;