From e2b37138219bb1f70a82f3ecc0558d80fb56b676 Mon Sep 17 00:00:00 2001 From: Juha Date: Mon, 12 Jun 2023 00:09:29 +0300 Subject: [PATCH] LazBuild: Remove TransferMacrosIntf reference. --- ide/lazbuild.lpr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ide/lazbuild.lpr b/ide/lazbuild.lpr index f40908daa4..c962d976aa 100644 --- a/ide/lazbuild.lpr +++ b/ide/lazbuild.lpr @@ -44,7 +44,7 @@ uses CompOptsIntf, IDEOptionsIntf, PackageDependencyIntf, // IDE InitialSetupProc, ExtToolsConsole, CompilerOptions, - ApplicationBundle, TransferMacrosIntf, TransferMacros, EnvironmentOpts, IDETranslations, + ApplicationBundle, TransferMacros, EnvironmentOpts, IDETranslations, LazarusIDEStrConsts, IDECmdLine, MiscOptions, Project, LazConf, PackageDefs, PackageLinks, PackageSystem, InterPkgConflictFiles, BuildLazDialog, BuildProfileManager, BuildManager, BaseBuildManager, ModeMatrixOpts; @@ -1448,7 +1448,7 @@ begin FreeThenNil(LazPackageLinks); FreeThenNil(TheCompiler); FreeAndNil(ExtToolConsole); - FreeThenNil(TransferMacrosIntf.GlobalMacroList); + FreeThenNil(GlobalMacroList); FreeThenNil(IDEMacros); FreeThenNil(MiscellaneousOptions); FreeThenNil(EnvironmentOptions);