This commit is contained in:
kmcclusk%netscape.com 1998-07-31 21:13:31 +00:00
Родитель 2299c5f98e
Коммит 3a8549509c
1 изменённых файлов: 6 добавлений и 5 удалений

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

@ -634,8 +634,9 @@ void nsWindow::RemoveChild(nsIWidget* aChild)
void nsWindow::Show(PRBool bState)
{
mShown = bState;
if (bState)
if (bState) {
XtManageChild(mWidget);
}
else
XtUnmanageChild(mWidget);
@ -880,14 +881,14 @@ nsCursor nsWindow::GetCursor()
void nsWindow::SetCursor(nsCursor aCursor)
{
if (PR_FALSE == mDisplayed)
return;
Window window = ::XtWindow(mWidget);
if (0==window)
return;
// Only change cursor if it's changing
if (aCursor != mCursor) {
printf("Changind CURSOR --------------------\n");
Cursor newCursor = 0;
Display *display = ::XtDisplay(mWidget);
Window window = ::XtWindow(mWidget);
switch(aCursor) {
case eCursor_select: