From a209a73c69c23e6060428cee95f20e1f9b7e5a71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Mon, 20 Feb 2023 20:32:06 +0100 Subject: [PATCH] button: Remove nullable annotation for new_from_icon_name() This makes it more consistent with set_icon_name() which does also not accept NULL. Fixes #5606 --- gtk/gtkbutton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkbutton.c b/gtk/gtkbutton.c index dda8c194ee..a5b0044885 100644 --- a/gtk/gtkbutton.c +++ b/gtk/gtkbutton.c @@ -638,7 +638,7 @@ gtk_button_new_with_label (const char *label) /** * gtk_button_new_from_icon_name: - * @icon_name: (nullable): an icon name + * @icon_name: an icon name * * Creates a new button containing an icon from the current icon theme. *