Changeset 326 for trunk/ItemList.pas
- Timestamp:
- Jun 25, 2024, 3:22:12 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ItemList.pas
r317 r326 98 98 99 99 resourcestring 100 SUnsupportedDataType = 'Unsupported field value data type %s'; 100 SUnsupportedDataType = 'Unsupported field value data type %s'; 101 SUnsupportedValueIndex = 'Unsupported value index %d'; 101 102 102 103 … … 367 368 procedure TItem.GetValue(Index: Integer; out Value); 368 369 begin 369 raise Exception.Create( 'Unsupported value index ' + IntToStr(Index));370 raise Exception.Create(Format(SUnsupportedValueIndex, [Index])); 370 371 end; 371 372 … … 426 427 procedure TItem.SetValue(Index: Integer; var Value); 427 428 begin 428 raise Exception.Create( 'Unsupported value index ' + IntToStr(Index));429 raise Exception.Create(Format(SUnsupportedValueIndex, [Index])); 429 430 end; 430 431
Note:
See TracChangeset
for help on using the changeset viewer.