fix AIX bustage - compiler confused by too much casting

This commit is contained in:
alecf%netscape.com 1999-03-02 01:40:52 +00:00
Родитель 564e076878
Коммит cc83dd48d4
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -149,8 +149,9 @@ NS_METHOD nsImageButton::Create(nsIWidget *aParent,
nsIToolkit *aToolkit,
nsWidgetInitData *aInitData)
{
return ChildWindow::Create(aParent, aRect,
nsnull != aHandleEventFunction ? aHandleEventFunction: HandleImageButtonEvent,
EVENT_CALLBACK ec = (aHandleEventFunction != nsnull) ?
aHandleEventFunction : HandleImageButtonEvent;
return ChildWindow::Create(aParent, aRect, ec,
aContext, aAppShell, aToolkit, aInitData);
}