mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
Compilation fix for Lazarus in Linux
This commit is contained in:
parent
179a2442ee
commit
f8f9d420a7
@ -52,7 +52,7 @@ uses
|
||||
{$ELSE}
|
||||
{$IFDEF MSWINDOWS}Windows, imm, {$ENDIF} Classes, Forms, Controls, Graphics,
|
||||
{$IFDEF FPC}
|
||||
LCLProc, LCLType, LCLIntf, LResources, LMessages, InterfaceBase, Win32Extra,
|
||||
LCLProc, LCLType, LCLIntf, LResources, LMessages, InterfaceBase, {$IFDEF MSWINDOWS}Win32Extra,{$ENDIF}
|
||||
{$ELSE}
|
||||
Messages,
|
||||
{$ENDIF}
|
||||
@ -371,11 +371,13 @@ begin
|
||||
end;
|
||||
|
||||
function TBufferPanel.CopyBuffer : boolean;
|
||||
{$IFDEF MSWINDOWS}
|
||||
var
|
||||
TempFunction : TBlendFunction;
|
||||
{$ENDIF}
|
||||
begin
|
||||
Result := False;
|
||||
|
||||
{$IFDEF MSWINDOWS}
|
||||
if BeginBufferDraw then
|
||||
try
|
||||
if (FBuffer <> nil) then
|
||||
@ -405,6 +407,7 @@ begin
|
||||
finally
|
||||
EndBufferDraw;
|
||||
end;
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
procedure TBufferPanel.Paint;
|
||||
|
@ -637,7 +637,7 @@ end;
|
||||
{$IFDEF LINUX}
|
||||
procedure WindowInfoAsChild(var aWindowInfo : TCefWindowInfo; aParent : TCefWindowHandle; aRect : TRect; const aWindowName : ustring = '');
|
||||
begin
|
||||
aWindowInfo.window_name := aWindowName;
|
||||
aWindowInfo.window_name := CefString(aWindowName);
|
||||
aWindowInfo.x := aRect.left;
|
||||
aWindowInfo.y := aRect.top;
|
||||
aWindowInfo.width := aRect.right - aRect.left;
|
||||
@ -651,7 +651,7 @@ end;
|
||||
|
||||
procedure WindowInfoAsPopUp(var aWindowInfo : TCefWindowInfo; aParent : TCefWindowHandle; const aWindowName : ustring = '');
|
||||
begin
|
||||
aWindowInfo.window_name := aWindowName;
|
||||
aWindowInfo.window_name := CefString(aWindowName);
|
||||
aWindowInfo.x := 0;
|
||||
aWindowInfo.y := 0;
|
||||
aWindowInfo.width := 0;
|
||||
@ -665,7 +665,7 @@ end;
|
||||
|
||||
procedure WindowInfoAsWindowless(var aWindowInfo : TCefWindowInfo; aParent : TCefWindowHandle; const aWindowName : ustring = '');
|
||||
begin
|
||||
aWindowInfo.window_name := aWindowName;
|
||||
aWindowInfo.window_name := CefString(aWindowName);
|
||||
aWindowInfo.x := 0;
|
||||
aWindowInfo.y := 0;
|
||||
aWindowInfo.width := 0;
|
||||
|
@ -2,7 +2,7 @@
|
||||
"UpdateLazPackages" : [
|
||||
{
|
||||
"ForceNotify" : true,
|
||||
"InternalVersion" : 5,
|
||||
"InternalVersion" : 6,
|
||||
"Name" : "cef4delphi_lazarus.lpk",
|
||||
"Version" : "74.1.13.0"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user