I am trying to migrate from 13.1 to 13.2
I have a form inherited from TcxSchedulerCustomEventEditor
TfrmCustomEventEditor = class(TcxSchedulerCustomEventEditor)
This does not compile anymore:
Delphiprocedure TfrmCustomEventEditor.UpdateEventValuesFromControls;
begin
inherited UpdateEventValuesFromControls;
try
FModified := True; //Undeclared identifier FModified !!!
except
on E: Exception do MsgBox(('Cannot post data' + #13#10 + E.Message,MB_ICONERROR);
end;
end;
could you please help me?
Is there a list of breaking changes? I just found the what's new page.
Thanks
Sorry I found the reason. you added the Modified property that i can access, while FModified is now private, while before it was protected. So you can close the ticket, anwyay if you provide me a list of breaking changes it would be much appreciated.