Changeset 3 for trunk/UDataFile.pas
- Timestamp:
- Jan 29, 2018, 10:54:40 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 5 5 *.lps 6 6 *.res 7 vCardStudio.exe
-
- Property svn:ignore
-
trunk/UDataFile.pas
r1 r3 18 18 procedure SetFileName(AValue: string); 19 19 procedure SetModified(AValue: Boolean); 20 procedure DoOnModify; 20 21 public 21 22 function GetFileExt: string; virtual; … … 48 49 if FModified = AValue then Exit; 49 50 FModified := AValue; 51 DoOnModify; 52 end; 53 54 procedure TDataFile.DoOnModify; 55 begin 56 if Assigned(FOnModify) then FOnModify(Self); 50 57 end; 51 58
Note:
See TracChangeset
for help on using the changeset viewer.