This commit is contained in:
pavlov%pavlov.net 1999-03-14 18:50:04 +00:00
Родитель 47b09c9522
Коммит 65f1a2ef4c
1 изменённых файлов: 10 добавлений и 3 удалений

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

@ -413,6 +413,7 @@ NS_METHOD nsWidget::SetCursor(nsCursor aCursor)
if (nsnull != newCursor) {
mCursor = aCursor;
::gdk_window_set_cursor(mWidget->window, newCursor);
::gdk_cursor_destroy(newCursor);
}
}
return NS_OK;
@ -437,6 +438,9 @@ NS_METHOD nsWidget::Invalidate(PRBool aIsSynchronous)
else
::gtk_widget_queue_draw(mWidget);
#ifdef DEBUG_pavlov
g_print("nsWidget::Invalidate(%i)\n", aIsSynchronous);
#endif
return NS_OK;
}
@ -468,6 +472,10 @@ NS_METHOD nsWidget::Invalidate(const nsRect & aRect, PRBool aIsSynchronous)
aRect.x, aRect.y,
aRect.width, aRect.height);
#ifdef DEBUG_pavlov
g_print("nsWidget::Invalidate({x=%i,y=%i,w=%i,h=%i}, %i)\n", aRect.x, aRect.y, aRect.width, aRect.height, aIsSynchronous);
#endif
return NS_OK;
}
@ -569,7 +577,6 @@ nsresult nsWidget::CreateWidget(nsIWidget *aParent,
nsNativeWidget aNativeParent)
{
GtkWidget *parentWidget = nsnull;
nsWidget *blah = NULL;
#if 0
if (aParent)