NOT PART OF THE BUILD

This commit is contained in:
ccarlen%netscape.com 2000-11-17 12:49:15 +00:00
parent e460f6ef0b
commit 5590a2046d
2 changed files with 9 additions and 1 deletions

View File

@ -187,6 +187,10 @@ void CBrowserShell::EventMouseUp(const EventRecord &inMacEvent)
{
FocusDraw();
mMessageSink.DispatchOSEvent((EventRecord&)inMacEvent, GetMacPort());
LEventDispatcher *dispatcher = LEventDispatcher::GetCurrentEventDispatcher();
if (dispatcher)
dispatcher->UpdateMenus();
}
@ -207,10 +211,13 @@ void CBrowserShell::AdjustCursorSelf(Point /* inPortPt */,
//*** CBrowserShell: LCommander overrides
//*****************************************************************************
void CBrowserShell::DontBeTarget()
void CBrowserShell::BeTarget()
{
}
void CBrowserShell::DontBeTarget()
{
}
Boolean CBrowserShell::HandleKeyPress(const EventRecord &inKeyEvent)
{

View File

@ -86,6 +86,7 @@ public:
const EventRecord& inMacEvent);
// LCommander
virtual void BeTarget();
virtual void DontBeTarget();
virtual Boolean HandleKeyPress(const EventRecord &inKeyEvent);
virtual Boolean ObeyCommand(PP_PowerPlant::CommandT inCommand, void* ioParam);