Changeset 51 for trunk/Forms/UFormAcronyms.pas
- Timestamp:
- Jul 25, 2016, 5:20:29 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAcronyms.pas
r45 r51 28 28 PopupMenuAcronym: TPopupMenu; 29 29 StatusBar1: TStatusBar; 30 ToolBar1: TToolBar; 31 ToolButton1: TToolButton; 32 ToolButton2: TToolButton; 33 ToolButton3: TToolButton; 30 34 procedure AAddExecute(Sender: TObject); 31 35 procedure AModifyExecute(Sender: TObject); 32 36 procedure ARemoveExecute(Sender: TObject); 33 37 procedure ASelectAllExecute(Sender: TObject); 38 procedure FormCreate(Sender: TObject); 34 39 procedure FormShow(Sender: TObject); 35 40 procedure ListViewAcronymsData(Sender: TObject; Item: TListItem); … … 60 65 61 66 resourcestring 62 SRemoveAcronym = 'Remove acronym ';63 SRemoveAcronymQuery = 'Do you want to remove selected acronym ?';67 SRemoveAcronym = 'Remove acronyms'; 68 SRemoveAcronymQuery = 'Do you want to remove selected acronyms?'; 64 69 STotal = 'Total'; 65 70 SFiltered = 'Filtered'; … … 190 195 end; 191 196 197 procedure TFormAcronyms.FormCreate(Sender: TObject); 198 var 199 I: Integer; 200 begin 201 for I := 0 to ToolBar1.ButtonCount - 1 do 202 ToolBar1.Buttons[I].Hint := ToolBar1.Buttons[I].Caption; 203 end; 204 192 205 procedure TFormAcronyms.ListViewFilter1Change(Sender: TObject); 193 206 begin
Note:
See TracChangeset
for help on using the changeset viewer.