fix building on windows

This commit is contained in:
Basile Burg 2018-04-16 14:12:04 +02:00
parent 057e3735ce
commit 747feb7e5c
1 changed files with 4 additions and 0 deletions

View File

@ -354,6 +354,7 @@ begin
end;
procedure TTerminal.setScrollBackLines(value: LongWord);
{$ifdef hasgtk2term}
var
v: TGValue;
begin
@ -361,6 +362,9 @@ begin
v.g_type:= 1;
v.data[0].v_uint := fScrollbackLines;
g_object_set_property(PGObject(PWidgetInfo(FInfo).ClientWidget), 'scrollback-lines', @v);
{$else}
begin
{$endif}
end;
procedure TTerminal.setBackgroundColor(value: TColor);