In the Object Inspector, if you double-click the OnHint event of a TAction then you get a procedure like this:
procedure TForm1.Action1Hint(var HintStr: string; var CanShow: Boolean);
There is no Sender parameter (like most other events have) so how can I tell which TAction made the call if several TActions share this event?