Skip to content

Commit

Permalink
Fix compile for Cocoa with Lazarus fixes branch 2.0.x / Requires patc…
Browse files Browse the repository at this point in the history
…hes LCL from SVN rev 63693
  • Loading branch information
martin committed Mar 1, 2021
1 parent a5e430a commit 8676b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/uceflazaruscocoa.pas
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ interface
{$IFDEF DARWIN} // $IFDEF MACOSX
type
CrAppProtocol = objcprotocol
function isHandlingSendEvent: objcbool; message 'isHandlingSendEvent';
function isHandlingSendEvent: LCLObjCBoolean; message 'isHandlingSendEvent';
end;

CrAppControlProtocol = objcprotocol(CrAppProtocol)
procedure setHandlingSendEvent(handlingSendEvent: objcbool); message 'setHandlingSendEvent:';
procedure setHandlingSendEvent(handlingSendEvent: LCLObjCBoolean); message 'setHandlingSendEvent:';
end;

TCrCocoaApplication = objcclass(TCocoaApplication, CrAppControlProtocol)
Expand Down

0 comments on commit 8676b8c

Please sign in to comment.