1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-22 22:17:48 +02:00

Update to CEF 125.0.22

Fixed build issue in uCEFLinuxFunctions
This commit is contained in:
Salvador Díaz Fau
2024-06-11 11:54:09 +02:00
parent 75dbef00a7
commit 110fefdfb5
5 changed files with 13 additions and 13 deletions

View File

@ -24,7 +24,7 @@ uses
{$IFDEF LINUX}
procedure GdkEventKeyToCEFKeyEvent(GdkEvent: PGdkEventKey; var aCEFKeyEvent : TCEFKeyEvent);
function KeyboardCodeFromXKeysym(keysym : uint32) : integer;
{$IF DEFINED(LINUXFMX) or DEFINED(LCLGTK2) or (LCL_FULLVERSION<3000000)}
{$IF DEFINED(LINUXFMX) or DEFINED(LCLGTK2) or (DEFINED(LCLGTK3) and (LCL_FULLVERSION<3000000))}
function GetCefStateModifiers(state : uint32) : integer;
{$ENDIF}
{$IF DEFINED(LCLGTK3) and (LCL_FULLVERSION>3000000)}
@ -453,7 +453,7 @@ begin
end;
end;
{$IF DEFINED(LINUXFMX) or DEFINED(LCLGTK2) or (LCL_FULLVERSION<3000000)}
{$IF DEFINED(LINUXFMX) or DEFINED(LCLGTK2) or (DEFINED(LCLGTK3) and (LCL_FULLVERSION<3000000))}
function GetCefStateModifiers(state : uint32) : integer;
begin
Result := EVENTFLAG_NONE;