From 8ba16eb4f1e6df67d79a9d509a3a45126a032e46 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 18 May 2021 17:05:26 -0400 Subject: Documentation fixes Mostly fixing up indentation of continuation lines, and other small cleanups. --- gtk/gtkcellarea.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gtk/gtkcellarea.c') diff --git a/gtk/gtkcellarea.c b/gtk/gtkcellarea.c index 549dc8ec1d..a4190f7957 100644 --- a/gtk/gtkcellarea.c +++ b/gtk/gtkcellarea.c @@ -101,7 +101,7 @@ * 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.measure() + * is requested its actual width in [vfunc@Gtk.Widget.measure] * it can simply consult the width accumulated so far in the * #GtkCellAreaContext object. * @@ -177,7 +177,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.measure(). Returning + * call to [vfunc@Gtk.Widget.measure]. 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 @@ -188,7 +188,7 @@ * * Once area sizes have been acquired at least for the rows in the * visible area of the layouting widget they can be rendered at - * #GtkWidgetClass.snapshot() time. + * [vfunc@Gtk.Widget.snapshot] time. * * A crude example of how to render all the rows at the root level * runs as follows: @@ -245,14 +245,14 @@ * area to paint the focus at render time. * * Layouting widgets that accept focus on cells should implement the - * #GtkWidgetClass.focus() virtual method. The layouting widget is always + * [vfunc@Gtk.Widget.focus] virtual method. The layouting widget is always * responsible for knowing where #GtkTreeModel rows are rendered inside - * the widget, so at #GtkWidgetClass.focus() time the layouting widget + * the widget, so at [vfunc@Gtk.Widget.focus] time the layouting widget * should use the #GtkCellArea methods to navigate focus inside the area * and then observe the GtkDirectionType to pass the focus to adjacent * rows and areas. * - * A basic example of how the #GtkWidgetClass.focus() virtual method + * A basic example of how the [vfunc@Gtk.Widget.focus] virtual method * should be implemented: * * |[ -- cgit v1.2.1