Use NS_STATIC_CAST instead of static_cast.

This commit is contained in:
ramiro%netscape.com 1999-02-19 11:05:16 +00:00
Родитель 759d1a2b61
Коммит 3639776526
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -767,7 +767,7 @@ NS_IMETHODIMP nsWidget::DispatchEvent(nsGUIEvent *event,
if (nsnull != mMenuListener) {
if (NS_MENU_EVENT == event->eventStructType)
aStatus = mMenuListener->MenuSelected(static_cast<nsMenuEvent&>(*event));
aStatus = mMenuListener->MenuSelected(NS_STATIC_CAST(nsMenuEvent&, *event));
}
aStatus = nsEventStatus_eIgnore;