diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-27 14:55:18 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-29 12:45:49 -0500 |
commit | 4c8bd8e7cf2a4850ad3aac83c0f3d6eb9c5540bd (patch) | |
tree | 6538e74167af906319ea494a08d831881fea5365 /gtk/gtkcontainer.c | |
parent | 768bc44081550be18ee19697ed36b5f92298ef11 (diff) | |
download | gtk+-4c8bd8e7cf2a4850ad3aac83c0f3d6eb9c5540bd.tar.gz |
docs: Identify examples that are C code
https://bugzilla.gnome.org/show_bug.cgi?id=723119
Diffstat (limited to 'gtk/gtkcontainer.c')
-rw-r--r-- | gtk/gtkcontainer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index de42b916f7..bd8d059210 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -108,7 +108,7 @@ * the container must return the height for its minimum width. This is easily achieved by * simply calling the reverse apis implemented for itself as follows: * - * |[ + * |[<!-- language="C" --> * static void * foo_container_get_preferred_height (GtkWidget *widget, gint *min_height, gint *nat_height) * { @@ -132,7 +132,7 @@ * Similarly, when gtk_widget_get_preferred_width_for_height() is called for a container or widget * that is height-for-width, it then only needs to return the base minimum width like so: * - * |[ + * |[<!-- language="C" --> * static void * foo_container_get_preferred_width_for_height (GtkWidget *widget, gint for_height, * gint *min_width, gint *nat_width) |