1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2026-02-22 00:27:31 +02:00

fixed: SimpleFMXBrowser: compilation failure with Delphi XE7

IFXMApplicationService has GetVersionString method since XE8 only.
This commit is contained in:
Alexey Shumkin
2019-03-06 16:35:17 +03:00
parent def9ab8a83
commit 84e34fea3f

View File

@@ -107,7 +107,11 @@ end;
function TFMXApplicationService.GetVersionString: string;
begin
{$IFDEF DELPHI22_UP}
Result := OldFMXApplicationService.GetVersionString;
{$ELSE DELPHI22_UP}
Result := 'unsupported yet';
{$ENDIF DELPHI22_UP}
end;
procedure TFMXApplicationService.Run;