diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-05-06 21:21:43 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-05-07 07:47:18 -0400 |
commit | f5a2ab38f3b4cda98de10cbd7f574697b0013b58 (patch) | |
tree | f5d2ab3e2c3a9aad30a25dcef52bc67aa4afe430 /gtk/gtkwidgetpaintable.c | |
parent | 766185bce5b312fce97e2ca5bd03eb95fe9cfd01 (diff) | |
download | gtk+-f5a2ab38f3b4cda98de10cbd7f574697b0013b58.tar.gz |
Miscellaneous docs improvements
Just the usual pre-release doc fixups.
Diffstat (limited to 'gtk/gtkwidgetpaintable.c')
-rw-r--r-- | gtk/gtkwidgetpaintable.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gtk/gtkwidgetpaintable.c b/gtk/gtkwidgetpaintable.c index d15b1cee4b..5cae0afd44 100644 --- a/gtk/gtkwidgetpaintable.c +++ b/gtk/gtkwidgetpaintable.c @@ -31,26 +31,25 @@ * @Title: GtkWidgetPaintable * @see_also: #GtkWidget, #GdkPaintable * - * #GtkWidgetPaintable is an implementation of the #GdkPaintable interface + * GtkWidgetPaintable is an implementation of the #GdkPaintable interface * that allows displaying the contents of a #GtkWidget. * - * #GtkWidgetPaintable will also take care of the widget not being in a + * GtkWidgetPaintable will also take care of the widget not being in a * state where it can be drawn (like when it isn't shown) and just draw * nothing or where it does not have a size (like when it is hidden) and * report no size in that case. * - * Of course, #GtkWidgetPaintable allows you to monitor widgets for size - * changes by emitting the GdkPaintable::invalidate-size signal whenever + * Of course, GtkWidgetPaintable allows you to monitor widgets for size + * changes by emitting the #GdkPaintable::invalidate-size signal whenever * the size of the widget changes as well as for visual changes by - * emitting the GdkPaintable::invalidate-contents signal whenever the + * emitting the #GdkPaintable::invalidate-contents signal whenever the * widget changes. * - * You can of course use a #GtkWidgetPaintable everywhere a + * You can of course use a GtkWidgetPaintable everywhere a * #GdkPaintable is allowed, including using it on a #GtkImage (or one - * of its parents) that it was set on itself via - * gtk_image_set_from_paintable(). The paintable will take care of recursion - * when this happens. - * If you do this however, make sure to set the GtkImage:can-shrink property + * of its parents) that it was set on itself via gtk_image_set_from_paintable(). + * The paintable will take care of recursion when this happens. If you do + * this however, make sure to set the #GtkImage:can-shrink property * to %TRUE or you might end up with an infinitely growing image. */ struct _GtkWidgetPaintable |