From d8227cc4c487af7c3dfd2fef61afcb4fb0e9e5fd Mon Sep 17 00:00:00 2001 From: Juha Date: Sun, 2 Feb 2025 10:23:41 +0200 Subject: [PATCH] LCL: Eliminate a variable in function DoOpen for Mac. --- lcl/include/sysenvapis_mac.inc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lcl/include/sysenvapis_mac.inc b/lcl/include/sysenvapis_mac.inc index ce730748e7..3eff52db0d 100644 --- a/lcl/include/sysenvapis_mac.inc +++ b/lcl/include/sysenvapis_mac.inc @@ -1,8 +1,6 @@ {%MainUnit ../lclintf.pas} function DoOpen(APath: String; Param: String): Boolean; -var - ResultingPath: string; begin Result := True; if not FileExistsUTF8(APath) and not DirectoryExistsUTF8(Apath) then begin @@ -12,14 +10,12 @@ begin end; // Paths with spaces need to be quoted, see bug 21651 if (APath<>'') and (APath[1]<>'''') then - ResultingPath:=QuotedStr(APath) - else - ResultingPath:=APath; + APath:=QuotedStr(APath); if Param<>'' then - ResultingPath:=Param+' '+ResultingPath; + APath:=Param+' '+APath; - RunCmdFromPath('open',ResultingPath); + RunCmdFromPath('open',APath); end; function FindDefaultBrowser(out ABrowser, AParams: String): Boolean;