diff options
author | Johan Dahlin <johan@gnome.org> | 2010-02-19 14:53:17 -0200 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2010-02-19 17:57:51 -0200 |
commit | fe852721123fb7dc5749c690613ca6e209363e2f (patch) | |
tree | 62ac68aab7296dbea80b199a0e1769ba5621514a /gtk/gtkprintoperation.c | |
parent | 347d406f80f2140a466da30764171cd92aa7d7ea (diff) | |
download | gtk+-fe852721123fb7dc5749c690613ca6e209363e2f.tar.gz |
[annotations] Add allow-none
This commit was created using a script that searched for all docstrings
containing a parameter and the string 'or %NULL'.
Gdk backends and demos excluded as they are not part of a public API
https://bugzilla.gnome.org/show_bug.cgi?id=610474
Diffstat (limited to 'gtk/gtkprintoperation.c')
-rw-r--r-- | gtk/gtkprintoperation.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index bc1b27f57d..72285730c6 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -944,7 +944,7 @@ gtk_print_operation_class_init (GtkPrintOperationClass *class) * @operation: the #GtkPrintOperation on which the signal was emitted * @preview: the #GtkPrintPreviewOperation for the current operation * @context: the #GtkPrintContext that will be used - * @parent: the #GtkWindow to use as window parent, or %NULL + * @parent: (allow-none): the #GtkWindow to use as window parent, or %NULL * * Gets emitted when a preview is requested from the native dialog. * @@ -1854,7 +1854,7 @@ gtk_print_operation_set_allow_async (GtkPrintOperation *op, /** * gtk_print_operation_set_custom_tab_label: * @op: a #GtkPrintOperation - * @label: the label to use, or %NULL to use the default label + * @label: (allow-none): the label to use, or %NULL to use the default label * * Sets the label for the tab holding custom widgets. * @@ -2993,7 +2993,7 @@ gtk_print_operation_get_error (GtkPrintOperation *op, * @op: a #GtkPrintOperation * @action: the action to start * @parent: (allow-none): Transient parent of the dialog - * @error: Return location for errors, or %NULL + * @error: (allow-none): Return location for errors, or %NULL * * Runs the print operation, by first letting the user modify * print settings in the print dialog, and then print the document. |