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

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

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

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