This commit is contained in:
ccarlen%netscape.com 2000-11-17 12:49:15 +00:00
Родитель 637079fb35
Коммит 1e72e2633a
2 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -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)
{

Просмотреть файл

@ -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);