mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-11 22:00:30 +01:00
IDE: fixed comment
git-svn-id: trunk@34730 -
This commit is contained in:
parent
00dbde1442
commit
b72a2cc04c
@ -364,7 +364,7 @@ type
|
||||
procedure mnuToolConfigBuildLazClicked(Sender: TObject);
|
||||
procedure mnuCustomExtToolClick(Sender: TObject);
|
||||
|
||||
// environment menu
|
||||
// options menu
|
||||
procedure mnuEnvGeneralOptionsClicked(Sender: TObject);
|
||||
procedure mnuEnvEditorOptionsClicked(Sender: TObject);
|
||||
procedure mnuEnvCodeTemplatesClicked(Sender: TObject);
|
||||
|
||||
@ -3870,6 +3870,13 @@ end;
|
||||
|
||||
procedure TProject.SetModified(const AValue: boolean);
|
||||
begin
|
||||
{$IFDEF VerboseTProjectSetModified}
|
||||
if (not Modified) and AValue then begin
|
||||
debugln(['TProject.SetModified ']);
|
||||
DumpStack;
|
||||
end;
|
||||
{$ENDIF}
|
||||
|
||||
if fDestroying then exit;
|
||||
inherited SetModified(AValue);
|
||||
if not AValue then
|
||||
|
||||
Loading…
Reference in New Issue
Block a user