diff options
| author | Michael Biebl <biebl@debian.org> | 2023-08-09 21:55:35 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2023-08-09 21:55:35 +0200 |
| commit | 05e4a733f2141995181a551854d5df929f084adf (patch) | |
| tree | 83bb937740a6667525ba0df046748ecaa829c269 /src/libnmt-newt | |
| parent | 14b0f3a9dc9ea90d60a3b057350fd4d637dc021a (diff) | |
New upstream version 1.44.0 upstream/1.44.0
Diffstat (limited to 'src/libnmt-newt')
| -rw-r--r-- | src/libnmt-newt/nmt-newt-form.c | 4 | ||||
| -rw-r--r-- | src/libnmt-newt/nmt-newt-listbox.c | 2 | ||||
| -rw-r--r-- | src/libnmt-newt/nmt-newt-widget.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/libnmt-newt/nmt-newt-form.c b/src/libnmt-newt/nmt-newt-form.c index de80b42a..6e0589cc 100644 --- a/src/libnmt-newt/nmt-newt-form.c +++ b/src/libnmt-newt/nmt-newt-form.c @@ -70,7 +70,7 @@ static void nmt_newt_form_redraw(NmtNewtForm *form); /** * nmt_newt_form_new: - * @title: (allow-none): the form title + * @title: (nullable): the form title * * Creates a new form, which will be shown centered on the screen. * Compare nmt_newt_form_new_fullscreen(). You can also position a @@ -91,7 +91,7 @@ nmt_newt_form_new(const char *title) /** * nmt_newt_form_new_fullscreen: - * @title: (allow-none): the form title + * @title: (nullable): the form title * * Creates a new fullscreen form. Compare nmt_newt_form_new(). * diff --git a/src/libnmt-newt/nmt-newt-listbox.c b/src/libnmt-newt/nmt-newt-listbox.c index 96e04c15..0a27e358 100644 --- a/src/libnmt-newt/nmt-newt-listbox.c +++ b/src/libnmt-newt/nmt-newt-listbox.c @@ -81,7 +81,7 @@ nmt_newt_listbox_new(int height, NmtNewtListboxFlags flags) * nmt_newt_listbox_append: * @listbox: an #NmtNewtListbox * @entry: the text for the new row - * @key: (allow-none): the key associated with @entry + * @key: (nullable): the key associated with @entry * * Adds a row to @listbox. */ diff --git a/src/libnmt-newt/nmt-newt-widget.c b/src/libnmt-newt/nmt-newt-widget.c index 8b5647aa..2f17d8f2 100644 --- a/src/libnmt-newt/nmt-newt-widget.c +++ b/src/libnmt-newt/nmt-newt-widget.c @@ -171,7 +171,7 @@ nmt_newt_widget_get_components(NmtNewtWidget *widget) * * Finds the widget inside @widget that owns @co. * - * Return value: @co's owner, or %NULL if it was not found. + * Returns: @co's owner, or %NULL if it was not found. */ NmtNewtWidget * nmt_newt_widget_find_component(NmtNewtWidget *widget, newtComponent co) |