mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:18:05 +02:00
IDE: Fix compilation with defines IDE_MEM_CHECK and DebugDisableAutoSizing.
git-svn-id: trunk@62257 -
This commit is contained in:
parent
4e9cd68c9f
commit
37a763ee4f
@ -556,13 +556,13 @@ begin
|
||||
OldPageIndex:=PageControl1.PageIndex;
|
||||
PgIndex:=2;
|
||||
ToolIndex:=0;
|
||||
DisableAutoSizing;
|
||||
DisableAutoSizing{$IFDEF DebugDisableAutoSizing}('TShowCompilerOptionsDlg.UpdateExecuteBeforeAfter'){$ENDIF};
|
||||
try
|
||||
AddTool(CompilerOpts.ExecuteBefore,'Execute Before');
|
||||
AddTool(CompilerOpts.ExecuteAfter,'Execute After');
|
||||
PageControl1.PageIndex:=OldPageIndex;
|
||||
finally
|
||||
EnableAutoSizing;
|
||||
EnableAutoSizing{$IFDEF DebugDisableAutoSizing}('TShowCompilerOptionsDlg.UpdateExecuteBeforeAfter'){$ENDIF};
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -40,6 +40,9 @@ uses
|
||||
LConvEncoding, LazFileCache, FileUtil, LazFileUtils, LazLoggerBase, LazUtilities,
|
||||
LazUTF8, LazTracer, AvgLvlTree,
|
||||
// Codetools
|
||||
{$IFDEF IDE_MEM_CHECK}
|
||||
MemCheck,
|
||||
{$ENDIF}
|
||||
BasicCodeTools, CodeToolsStructs, CodeToolManager, FileProcs, DefineTemplates,
|
||||
CodeCache, CodeTree, FindDeclarationTool, KeywordFuncLists,
|
||||
// IdeIntf
|
||||
|
Loading…
Reference in New Issue
Block a user