diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-05-20 20:45:06 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-05-20 20:45:06 -0400 |
commit | 4a0d3d7acc35ce7c1f2fcb29facf58b9720eb6a5 (patch) | |
tree | e4157e70d282f7e8edac07406c67bb051334d7c7 /gtk/gtkprintunixdialog.c | |
parent | 7fe0610b681c96823c45b88ca2c9657f1320bef8 (diff) | |
download | gtk+-4a0d3d7acc35ce7c1f2fcb29facf58b9720eb6a5.tar.gz |
docs: Reduce redundancy
Remove a boatload of "or %NULL" from nullable parameters
and return values. gi-docgen generates suitable text from
the annotation that we don't need to duplicate.
This adds a few missing nullable annotations too.
Diffstat (limited to 'gtk/gtkprintunixdialog.c')
-rw-r--r-- | gtk/gtkprintunixdialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkprintunixdialog.c b/gtk/gtkprintunixdialog.c index 8b5ea2d8f3..c0f8825a3f 100644 --- a/gtk/gtkprintunixdialog.c +++ b/gtk/gtkprintunixdialog.c @@ -3051,8 +3051,8 @@ paper_size_changed (GtkDropDown *combo_box, /** * gtk_print_unix_dialog_new: - * @title: (nullable): Title of the dialog, or %NULL - * @parent: (nullable): Transient parent of the dialog, or %NULL + * @title: (nullable): Title of the dialog + * @parent: (nullable): Transient parent of the dialog * * Creates a new `GtkPrintUnixDialog`. * @@ -3222,7 +3222,7 @@ set_active_printer (GtkPrintUnixDialog *dialog, /** * gtk_print_unix_dialog_set_settings: (attributes org.gtk.Method.set_property=print-settings) * @dialog: a `GtkPrintUnixDialog` - * @settings: (nullable): a `GtkPrintSettings`, or %NULL + * @settings: (nullable): a `GtkPrintSettings` * * Sets the `GtkPrintSettings` for the `GtkPrintUnixDialog`. * |