diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-21 15:47:49 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-21 18:57:38 -0500 |
commit | 609a58dcf017818ff7e98993446bc94a27d831f7 (patch) | |
tree | df83457338427099fdc7b206b6e537a98dc5df53 /gtk/gtkcellarea.c | |
parent | 650d25cdafbb3f07dcd922542fda9f5af8c81b83 (diff) | |
download | gtk+-609a58dcf017818ff7e98993446bc94a27d831f7.tar.gz |
docs: don't try to link to vfuncs
Diffstat (limited to 'gtk/gtkcellarea.c')
-rw-r--r-- | gtk/gtkcellarea.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcellarea.c b/gtk/gtkcellarea.c index 9bd4e10a8e..0e2f9e12d4 100644 --- a/gtk/gtkcellarea.c +++ b/gtk/gtkcellarea.c @@ -102,14 +102,14 @@ * exceedingly large amount of rows. The #GtkCellLayout widget in * that case would calculate the required width of the rows in an * idle or timeout source (see g_timeout_add()) and when the widget - * is requested its actual width in #GtkWidgetClass.get_preferred_width() + * is requested its actual width in #GtkWidgetClass.get_preferred_width(<!-- -->) * it can simply consult the width accumulated so far in the * #GtkCellAreaContext object. * * A simple example where rows are rendered from top to bottom and * take up the full width of the layouting widget would look like: * <example> - * <title>A typical get_preferred_width() implementation</title> + * <title>A typical get_preferred_width(<!-- -->) implementation</title> * <programlisting> * static void * foo_get_preferred_width (GtkWidget *widget, @@ -180,7 +180,7 @@ * synchronously. The reasoning here is that any layouting widget is * at least capable of synchronously calculating enough height to fill * the screen height (or scrolled window height) in response to a single - * call to #GtkWidgetClass.get_preferred_height_for_width(). Returning + * call to #GtkWidgetClass.get_preferred_height_for_width(<!-- -->). Returning * a perfect height for width that is larger than the screen area is * inconsequential since after the layouting receives an allocation * from a scrolled window it simply continues to drive the scrollbar |