You've already forked lazarus-ccr
Minor changes so it compiles with FPC 3.0 on non-Windows platforms.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4454 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -178,11 +178,11 @@ begin
|
||||
begin
|
||||
if URL > '' then begin
|
||||
{$IFDEF DARWIN}
|
||||
if Shell('Open ' + URL) = 127 then
|
||||
if fpSystem('Open ' + URL) = 127 then
|
||||
MessageBeep(0);
|
||||
{$ELSE}
|
||||
if (GetBrowserPath = '') or
|
||||
(Shell(GetBrowserPath + ' ' + URL) = 127) then
|
||||
(fpSystem(GetBrowserPath + ' ' + URL) = 127) then
|
||||
MessageBeep(0);
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
Reference in New Issue
Block a user