diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-05-20 09:17:04 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-05-22 17:25:26 -0400 |
commit | 91f7b9663fb17ebe26a28ec589a727397eef0967 (patch) | |
tree | 0d53b59b4e28bd4c879bf2081f8bef1993a5b298 /gtk/gtkfilechooserutils.c | |
parent | 2d266d107b2db1c1bf478bf7c93e38884c86c366 (diff) | |
download | gtk+-91f7b9663fb17ebe26a28ec589a727397eef0967.tar.gz |
gtk: Clean up docs syntax
Replace leftover gtk-doc syntax (#Type) with backquotes.
Diffstat (limited to 'gtk/gtkfilechooserutils.c')
-rw-r--r-- | gtk/gtkfilechooserutils.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/gtk/gtkfilechooserutils.c b/gtk/gtkfilechooserutils.c index af319303a0..556859a4a1 100644 --- a/gtk/gtkfilechooserutils.c +++ b/gtk/gtkfilechooserutils.c @@ -71,15 +71,16 @@ static const char * delegate_get_choice (GtkFileChooser *chooser, /** * _gtk_file_chooser_install_properties: - * @klass: the class structure for a type deriving from #GObject + * @klass: the class structure for a type deriving from `GObject` * * Installs the necessary properties for a class implementing - * #GtkFileChooser. A #GtkParamSpecOverride property is installed - * for each property, using the values from the #GtkFileChooserProp - * enumeration. The caller must make sure itself that the enumeration - * values don’t collide with some other property values they - * are using. - **/ + * `GtkFileChooser`. + * + * A `GtkParamSpecOverride` property is installed for each property, + * using the values from the `GtkFileChooserProp` enumeration. The + * caller must make sure itself that the enumeration values don’t + * collide with some other property values they are using. + */ void _gtk_file_chooser_install_properties (GObjectClass *klass) { @@ -105,11 +106,12 @@ _gtk_file_chooser_install_properties (GObjectClass *klass) /** * _gtk_file_chooser_delegate_iface_init: - * @iface: a #GtkFileChoserIface structure + * @iface: a `GtkFileChoserIface` structure * * An interface-initialization function for use in cases where * an object is simply delegating the methods, signals of - * the #GtkFileChooser interface to another object. + * the `GtkFileChooser` interface to another object. + * * _gtk_file_chooser_set_delegate() must be called on each * instance of the object so that the delegate object can * be found. @@ -140,12 +142,12 @@ _gtk_file_chooser_delegate_iface_init (GtkFileChooserIface *iface) /** * _gtk_file_chooser_set_delegate: - * @receiver: a #GObject implementing #GtkFileChooser - * @delegate: another #GObject implementing #GtkFileChooser + * @receiver: a `GObject` implementing `GtkFileChooser` + * @delegate: another `GObject` implementing `GtkFileChooser` * - * Establishes that calls on @receiver for #GtkFileChooser + * Establishes that calls on @receiver for `GtkFileChooser` * methods should be delegated to @delegate, and that - * #GtkFileChooser signals emitted on @delegate should be + * `GtkFileChooser` signals emitted on @delegate should be * forwarded to @receiver. Must be used in conjunction with * _gtk_file_chooser_delegate_iface_init(). **/ |