Part of a fix for bug 90823 that should have gone in earlier but was missed.

r=timeless, sr=blake


git-svn-id: svn://10.0.0.236/trunk@130761 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lordpixel%mac.com 2002-09-30 00:11:05 +00:00
parent 4087d85564
commit 8c6dfab219

View File

@ -162,6 +162,10 @@ void AEGenericClass::DispatchEvent(AEDesc *token, const AppleEvent *appleEvent,
case kAEOpenApplication:
HandleRun(token, appleEvent, reply);
break;
case kAEReopenApplication:
HandleReOpen(token, appleEvent, reply);
break;
case kAEQuitApplication:
HandleQuit(token, appleEvent, reply);
@ -518,6 +522,16 @@ void AEGenericClass::HandleOpen(AEDesc *token, const AppleEvent *appleEvent, App
ThrowIfOSErr(errAEEventNotHandled);
}
/*----------------------------------------------------------------------------
HandleReOpen
----------------------------------------------------------------------------*/
void AEGenericClass::HandleReOpen(AEDesc *token, const AppleEvent *appleEvent, AppleEvent *reply)
{
ThrowIfOSErr(errAEEventNotHandled);
}
/*----------------------------------------------------------------------------
HandleRun