mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 03:37:54 +02:00
IDE: Compiling aborted, if missing events not removed or ignored + fixed undefined out parameter.
git-svn-id: branches/fixes_1_6@54101 -
This commit is contained in:
parent
383134bee7
commit
270d121929
@ -279,6 +279,7 @@ var
|
||||
s: String;
|
||||
MsgResult: TModalResult;
|
||||
begin
|
||||
ComponentModified:=false;
|
||||
ListOfPInstancePropInfo:=nil;
|
||||
try
|
||||
// find all dangling events
|
||||
@ -322,14 +323,14 @@ begin
|
||||
Format(lisTheFollowingMethodsUsedByAreNotInTheSourceRemoveTh, [DbgSName(
|
||||
RootComponent), LineEnding, PascalBuffer.Filename, LineEnding+LineEnding, s, LineEnding])
|
||||
,mtConfirmation,
|
||||
[mrYes, lisRemoveThem, mrIgnore, lisKeepThemAndContinue, mrCancel]);
|
||||
[mrYes, lisRemoveThem, mrIgnore, lisKeepThemAndContinue, mrAbort]);
|
||||
if MsgResult=mrYes then begin
|
||||
ClearDanglingEvents(ListOfPInstancePropInfo);
|
||||
ComponentModified:=true;
|
||||
end else if MsgResult=mrIgnore then
|
||||
exit(mrOk)
|
||||
else
|
||||
exit(mrCancel);
|
||||
exit(mrAbort);
|
||||
finally
|
||||
FreeListOfPInstancePropInfo(ListOfPInstancePropInfo);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user