Now return the proper value in nsNativeBrowserWindow::GetMenuBarHeight().

This commit is contained in:
shawnp%earthling.net 1999-09-03 01:04:20 +00:00
Родитель d0d0297cf9
Коммит d5b25b2633
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -66,11 +66,15 @@ static void MenuProc(PRUint32 aId)
bw->DispatchMenuItem(aId);
}
PRInt32 gMenuBarHeight = 0;
nsresult
nsNativeBrowserWindow::CreateMenuBar(PRInt32 aWidth)
{
CreateViewerMenus((QWidget*)mWindow->GetNativeData(NS_NATIVE_WIDGET),
this);
this,
&gMenuBarHeight);
return NS_OK;
}
@ -79,7 +83,7 @@ nsNativeBrowserWindow::GetMenuBarHeight(PRInt32 * aHeightOut)
{
NS_ASSERTION(nsnull != aHeightOut,"null out param.");
*aHeightOut = 50;
*aHeightOut = gMenuBarHeight;
return NS_OK;
}