Correct missing line - TCocoaWidgetSet.AppTerminate;

git-svn-id: trunk@43599 -
This commit is contained in:
freq 2013-12-27 10:52:05 +00:00
parent cd6227e4c9
commit 340c0f0266

View File

@ -139,12 +139,11 @@ end;
Tells Carbon to halt the application
------------------------------------------------------------------------------}
procedure TCocoaWidgetSet.AppTerminate;
begin
if FTerminating then Exit;
// TODO: Check if there is more cleanup to do here
// NSApp.terminate(nil); // causes app to quit directly
// TODO: Check if there is more cleanup to do here
// NSApp.terminate(nil); // causes app to quit directly
end;
{------------------------------------------------------------------------------