Changeset 223 for branches/CpuSingleSize/Forms/UFormStorage.pas
- Timestamp:
- Jul 12, 2022, 10:43:40 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CpuSingleSize/Forms/UFormStorage.pas
r220 r223 1 1 unit UFormStorage; 2 3 {$mode delphi}4 2 5 3 interface … … 18 16 procedure SetDevice(AValue: TDevice); override; 19 17 public 20 Storage: T Storage;18 Storage: TDeviceStorage; 21 19 end; 22 20 … … 37 35 procedure TFormStorage.SetDevice(AValue: TDevice); 38 36 begin 39 if AValue is T Storage then40 Storage := T Storage(AValue);37 if AValue is TDeviceStorage then 38 Storage := TDeviceStorage(AValue); 41 39 end; 42 40
Note:
See TracChangeset
for help on using the changeset viewer.