Changeset 3 for trunk/UCore.pas
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 5 5 *.lps 6 6 *.res 7 vCardStudio.exe
-
- Property svn:ignore
-
trunk/UCore.pas
r1 r3 251 251 FormMain.UpdateInterface; 252 252 if Assigned(DataFile) then 253 FormContacts.Contacts := TContactsFile(DataFile). Records253 FormContacts.Contacts := TContactsFile(DataFile).Contacts 254 254 else FormContacts.Contacts := nil; 255 FormContacts.ReloadList;256 255 end; 257 256 … … 295 294 procedure TCore.UpdateInterface; 296 295 begin 297 AFileSave.Enabled := Assigned(DataFile) ;296 AFileSave.Enabled := Assigned(DataFile) and DataFile.Modified; 298 297 AFileSaveAs.Enabled := Assigned(DataFile); 299 298 AFileClose.Enabled := Assigned(DataFile);
Note:
See TracChangeset
for help on using the changeset viewer.