summaryrefslogtreecommitdiff
path: root/gtk/gtkfilter.c
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/gtkfilter.c
parent2d266d107b2db1c1bf478bf7c93e38884c86c366 (diff)
downloadgtk+-91f7b9663fb17ebe26a28ec589a727397eef0967.tar.gz
gtk: Clean up docs syntax
Replace leftover gtk-doc syntax (#Type) with backquotes.
Diffstat (limited to 'gtk/gtkfilter.c')
-rw-r--r--gtk/gtkfilter.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk/gtkfilter.c b/gtk/gtkfilter.c
index ca6e0e9463..fe6e5c0756 100644
--- a/gtk/gtkfilter.c
+++ b/gtk/gtkfilter.c
@@ -44,7 +44,7 @@
* various widgets to easily allow searches.
*
* However, in particular for large lists or complex search methods, it is
- * also possible to subclass #GtkFilter and provide one's own filter.
+ * also possible to subclass `GtkFilter` and provide one's own filter.
*/
enum {
@@ -81,7 +81,7 @@ gtk_filter_class_init (GtkFilterClass *class)
/**
* GtkFilter::changed:
- * @self: The #GtkFilter
+ * @self: The `GtkFilter`
* @change: how the filter changed
*
* Emitted whenever the filter changed.
@@ -136,15 +136,15 @@ gtk_filter_match (GtkFilter *self,
/**
* gtk_filter_get_strictness:
- * @self: a #GtkFilter
+ * @self: a `GtkFilter`
*
* Gets the known strictness of @filters. If the strictness is not known,
* %GTK_FILTER_MATCH_SOME is returned.
*
- * This value may change after emission of the #GtkFilter::changed signal.
+ * This value may change after emission of the `GtkFilter::changed` signal.
*
* This function is meant purely for optimization purposes, filters can
- * choose to omit implementing it, but #GtkFilterListModel uses it.
+ * choose to omit implementing it, but `GtkFilterListModel` uses it.
*
* Returns: the strictness of @self
**/
@@ -158,17 +158,17 @@ gtk_filter_get_strictness (GtkFilter *self)
/**
* gtk_filter_changed:
- * @self: a #GtkFilter
+ * @self: a `GtkFilter`
* @change: How the filter changed
*
- * Emits the #GtkFilter::changed signal to notify all users of the filter that
+ * Emits the `GtkFilter::changed` signal to notify all users of the filter that
* the filter changed. Users of the filter should then check items again via
* gtk_filter_match().
*
* Depending on the @change parameter, not all items need to be changed, but
- * only some. Refer to the #GtkFilterChange documentation for details.
+ * only some. Refer to the `GtkFilterChange` documentation for details.
*
- * This function is intended for implementors of #GtkFilter subclasses and
+ * This function is intended for implementors of `GtkFilter` subclasses and
* should not be called from other functions.
*/
void