Hi,
After installing VCL 13.2.2 I get following error during compiling the project.
[DCC Error] CustomSchedulerEditor.pas(129): E2137 Method 'ApplyChanges' not found in base class
My application uses an custom scheduler editor.
I can't find any breaking changes for this.
DelphiProtected
procedure ApplyChanges; override;
Delphiprocedure TcxSchedulerEventEditorCustomized.ApplyChanges;
begin
// Deze procedure vervangt die uit unit cxSchedulerEventEditor.pas
case ModalResult of
mrAbort:
DeleteEvent;
mrOk:
SaveChanges;
mrCancel:
begin
If NieuweAfspraakRelatie then
Event.Delete
else
Event.Cancel;
FModified := False;
Storage.FullRefresh;
end;
end;
NieuweAfspraakRelatie := False;
end;
Do you have a solution for this?