You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to changes in Bold the signature of BoldPlaceableReceiver.OnReceive has changed Requestedevent: Integer
has become Requestedevent: TBoldRequestedEvent
This results in different declaration of event implementation in forms, and causes Delphi to complain about incompatible event.
To fix the problem:
Replace all occurrences of Requestedevent: Integer with Requestedevent: TBoldRequestedEvent
The text was updated successfully, but these errors were encountered:
Due to changes in Bold the signature of
BoldPlaceableReceiver.OnReceive
has changedRequestedevent: Integer
has become
Requestedevent: TBoldRequestedEvent
This results in different declaration of event implementation in forms, and causes Delphi to complain about incompatible event.
To fix the problem:
Replace all occurrences of
Requestedevent: Integer
withRequestedevent: TBoldRequestedEvent
The text was updated successfully, but these errors were encountered: