From: Javier Jardón Date: Sun, 15 Aug 2010 22:34:48 +0000 (+0200) Subject: tests/testcairo.c: Use accessor functions to access GtkWidget X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=067f418604c562cb53988c1532ec7deb92dbc84e;p=~andy%2Fgtk tests/testcairo.c: Use accessor functions to access GtkWidget --- diff --git a/tests/testcairo.c b/tests/testcairo.c index b2a232b02..dc3a27cfc 100644 --- a/tests/testcairo.c +++ b/tests/testcairo.c @@ -195,11 +195,13 @@ on_expose_event (GtkWidget *widget, GdkEventExpose *event, gpointer data) { + GtkAllocation allocation; cairo_t *cr; - cr = gdk_cairo_create (widget->window); + cr = gdk_cairo_create (gtk_widget_get_window (widget)); - draw (cr, widget->allocation.width, widget->allocation.height); + gtk_widget_get_allocation (widget, &allocation); + draw (cr, allocation.width, allocation.height); cairo_destroy (cr);