This commit is contained in:
rods 1998-06-15 16:28:42 +00:00
Родитель 06bd969d3d
Коммит 2a348d6c32
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -416,6 +416,10 @@ void nsWindow::RemoveChild(nsIWidget* aChild)
//-------------------------------------------------------------------------
void nsWindow::Show(PRBool bState)
{
if (bState)
XtManageChild(mWidget);
else
XtUnmanageChild(mWidget);
}
//-------------------------------------------------------------------------
@ -436,6 +440,7 @@ void nsWindow::Move(PRUint32 aX, PRUint32 aY)
//-------------------------------------------------------------------------
void nsWindow::Resize(PRUint32 aWidth, PRUint32 aHeight, PRBool aRepaint)
{
XtVaSetValues(mWidget, XmNwidth, aWidth, XmNheight, aHeight, nsnull);
}