Problem: 1357587

Title: (Performance) Don't need mResignedWindowTarget

Received: Jun 10 1996 3:46PM


TEventHandler sends the mResignedWindowTarget whenever the target changes, but there isn't any code in MacApp or in the examples that checks for it. Simply getting rid of it would speed up MacApp for most users. Anyone who actually needs this event can easily add it back in an override.
void TEventHandler::ResignedWindowTarget()
{
	HandleEvent(mResignedWindowTarget, this, NULL);
}

Fix:

This was not changed because we discovered that the TTargetBorderViews were interested in this message.