Skip to content

Commit

Permalink
[ci] test fix for lazarus 3.0 build error on macos action
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Feb 18, 2024
1 parent 54f732e commit 4c88de2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mcxstudio/lazhelphtml.pas
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ interface
{$IFDEF MSWindows}Windows, ShellApi,{$ENDIF} // needed for ShellExecute, not good for WinCE, issue #36558
Classes, SysUtils,
// LazUtils
LazFileUtils, UTF8Process, LazUTF8, LazConfigStorage,
LazFileUtils, UTF8Process, LazStringUtils, LazConfigStorage, LazLoggerBase,
// LCL
LCLProc, LCLIntf, LCLStrConsts, HelpIntfs, LazHelpIntf;
LCLIntf, LCLStrConsts, HelpIntfs, LazHelpIntf;

type
{ THTMLHelpDatabase
Expand Down Expand Up @@ -193,7 +193,7 @@ function THTMLHelpDatabase.ShowURL(const URL, Title: string; var ErrMsg: string
if EffBaseURL<>'' then begin
SplitURL(EffBaseURL,BaseURLType,BaseURLPath,BaseURLParams);
if (BaseURLPath<>'') then
URLPath:=BaseURLPath+BaseURLParams+URLPath;
URLPath:=BaseURLPath+URLPath;
URLType:=BaseURLType;
end;
end;
Expand Down

0 comments on commit 4c88de2

Please sign in to comment.