Latest release issue

In the latest build, .1617, I am getting an error about RegisterEventClient, which has always worked.

[dcc64 Error] : E2625 Private member ‘TRORemoteDataModule.RegisterEventClient’ is inaccessible here
uRORemoteDataModule.pas(1): Related method: procedure RegisterEventClient(const string; const string);

There is also a slight typo in the comments where it’s defined:

{ Events regitsration convenience }

Hi,

as a workaround, you can call

(self as IROServerEventsBroker).RegisterEventClient(string, string);

or use guid version like

self.RegisterEventClient(guid, string);

Thanks Eugene, that was quick! The first one worked (second not).