summaryrefslogtreecommitdiff
path: root/gtk/gtklayoutmanager.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-05-20 09:17:04 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-05-22 17:25:26 -0400
commit91f7b9663fb17ebe26a28ec589a727397eef0967 (patch)
tree0d53b59b4e28bd4c879bf2081f8bef1993a5b298 /gtk/gtklayoutmanager.h
parent2d266d107b2db1c1bf478bf7c93e38884c86c366 (diff)
downloadgtk+-91f7b9663fb17ebe26a28ec589a727397eef0967.tar.gz
gtk: Clean up docs syntax
Replace leftover gtk-doc syntax (#Type) with backquotes.
Diffstat (limited to 'gtk/gtklayoutmanager.h')
-rw-r--r--gtk/gtklayoutmanager.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtklayoutmanager.h b/gtk/gtklayoutmanager.h
index 314d4a0625..676edcd4ff 100644
--- a/gtk/gtklayoutmanager.h
+++ b/gtk/gtklayoutmanager.h
@@ -34,22 +34,22 @@ G_DECLARE_DERIVABLE_TYPE (GtkLayoutManager, gtk_layout_manager, GTK, LAYOUT_MANA
* GtkLayoutManagerClass:
* @get_request_mode: a virtual function, used to return the preferred
* request mode for the layout manager; for instance, "width for height"
- * or "height for width"; see #GtkSizeRequestMode
+ * or "height for width"; see `GtkSizeRequestMode`
* @measure: a virtual function, used to measure the minimum and preferred
* sizes of the widget using the layout manager for a given orientation
* @allocate: a virtual function, used to allocate the size of the widget
* using the layout manager
- * @layout_child_type: the type of #GtkLayoutChild used by this layout manager
- * @create_layout_child: a virtual function, used to create a #GtkLayoutChild
+ * @layout_child_type: the type of `GtkLayoutChild` used by this layout manager
+ * @create_layout_child: a virtual function, used to create a `GtkLayoutChild`
* meta object for the layout properties
* @root: a virtual function, called when the widget using the layout
- * manager is attached to a #GtkRoot
+ * manager is attached to a `GtkRoot`
* @unroot: a virtual function, called when the widget using the layout
- * manager is detached from a #GtkRoot
+ * manager is detached from a `GtkRoot`
*
* The `GtkLayoutManagerClass` structure contains only private data, and
* should only be accessed through the provided API, or when subclassing
- * #GtkLayoutManager.
+ * `GtkLayoutManager`.
*/
struct _GtkLayoutManagerClass
{
@@ -79,13 +79,13 @@ struct _GtkLayoutManagerClass
/**
* GtkLayoutManagerClass::create_layout_child:
- * @manager: the #GtkLayoutManager
+ * @manager: the `GtkLayoutManager`
* @widget: the widget using the @manager
* @for_child: the child of @widget
*
- * Create a #GtkLayoutChild instance for the given @for_child widget.
+ * Create a `GtkLayoutChild` instance for the given @for_child widget.
*
- * Returns: (transfer full): a #GtkLayoutChild
+ * Returns: (transfer full): a `GtkLayoutChild`
*/
GtkLayoutChild * (* create_layout_child) (GtkLayoutManager *manager,
GtkWidget *widget,