1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-02 21:57:37 +02:00

Merge pull request #349 from User4martin/fpc-work-mac-2

Fix compile for Cocoa with Lazarus fixes branch 2.0.x / Requires patc…
This commit is contained in:
Salvador Díaz Fau 2021-03-02 09:58:05 +01:00 committed by GitHub
commit c87b93a41a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,11 +36,11 @@ uses
{$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)