From ea447c74d5073d0f5035f99ee24807ed36d8d2cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Sat, 13 Jun 2020 17:57:59 +0200 Subject: [PATCH] Fixed LoadLibrary parameter for Linux --- source/uCEFApplicationCore.pas | 2 +- update_CEF4Delphi.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/uCEFApplicationCore.pas b/source/uCEFApplicationCore.pas index d6d23c17..1c4e5dc1 100644 --- a/source/uCEFApplicationCore.pas +++ b/source/uCEFApplicationCore.pas @@ -2030,7 +2030,7 @@ begin {$IFDEF MSWINDOWS} FLibHandle := LoadLibraryExW(PWideChar(LibCefPath), 0, LOAD_WITH_ALTERED_SEARCH_PATH); {$ELSE} - FLibHandle := LoadLibrary(PChar(LibCefPath)); + FLibHandle := LoadLibrary(LibCefPath); {$ENDIF} if (FLibHandle = 0) then diff --git a/update_CEF4Delphi.json b/update_CEF4Delphi.json index ac89eead..cfe049d5 100644 --- a/update_CEF4Delphi.json +++ b/update_CEF4Delphi.json @@ -2,7 +2,7 @@ "UpdateLazPackages" : [ { "ForceNotify" : true, - "InternalVersion" : 143, + "InternalVersion" : 144, "Name" : "cef4delphi_lazarus.lpk", "Version" : "83.3.12.0" }