From 29230c3fb9e2ce8ff028a69fc33f1dae8543d285 Mon Sep 17 00:00:00 2001 From: William Jon McCann Date: Tue, 21 Jan 2014 17:47:24 -0500 Subject: [PATCH] docs: use function instead of removed macro --- docs/reference/gtk/migrating-2to3.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/gtk/migrating-2to3.xml b/docs/reference/gtk/migrating-2to3.xml index 0b027d577d..7de372a7f4 100644 --- a/docs/reference/gtk/migrating-2to3.xml +++ b/docs/reference/gtk/migrating-2to3.xml @@ -1001,7 +1001,7 @@ AM_CONDITIONAL(BUILD_x11, [test "x$have_x11" = "xyes"]) The widget is expected to draw itself with its allocated size, which is available via the new gtk_widget_get_allocated_width() and gtk_widget_get_allocated_height() functions. It is not necessary to - check for GTK_WIDGET_IS_DRAWABLE(), since GTK+ already does this check + check for gtk_widget_is_drawable(), since GTK+ already does this check before emitting the #GtkWidget::draw signal.