diff options
Diffstat (limited to 'gtk/deprecated/gtktable.c')
-rw-r--r-- | gtk/deprecated/gtktable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/deprecated/gtktable.c b/gtk/deprecated/gtktable.c index cecb64a6ce..55affca845 100644 --- a/gtk/deprecated/gtktable.c +++ b/gtk/deprecated/gtktable.c @@ -729,13 +729,13 @@ gtk_table_resize (GtkTable *table, * and row numbers of the table. (Columns and rows are indexed from zero). * * To make a button occupy the lower right cell of a 2x2 table, use - * <informalexample><programlisting> + * |[ * gtk_table_attach (table, button, * 1, 2, // left, right attach * 1, 2, // top, bottom attach * xoptions, yoptions, * xpadding, ypadding); - * </programlisting></informalexample> + * ]| * If you want to make the button span the entire bottom row, use @left_attach == 0 and @right_attach = 2 instead. * * Deprecated: 3.4: Use gtk_grid_attach() with #GtkGrid. Note that the attach |