diff options
author | Daniel Boles <dboles@src.gnome.org> | 2017-09-20 23:53:54 +0100 |
---|---|---|
committer | Daniel Boles <dboles@src.gnome.org> | 2017-09-20 23:55:15 +0100 |
commit | c0fdf522dd890b028dba796d49b30fec772983ab (patch) | |
tree | 48a0c3b0375838a28d529089e09b03c7f31ba7f7 /gtk/gtktoolitem.c | |
parent | 9c7e996bceaecedd474481d00303d807dcd5410c (diff) | |
download | gtk+-c0fdf522dd890b028dba796d49b30fec772983ab.tar.gz |
ToolItem: Fix nullable annotation put on wrong arg
D’oh
Diffstat (limited to 'gtk/gtktoolitem.c')
-rw-r--r-- | gtk/gtktoolitem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index 09ee3ec452..c8092473e2 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -899,9 +899,9 @@ gtk_tool_item_rebuild_menu (GtkToolItem *tool_item) /** * gtk_tool_item_set_proxy_menu_item: - * @tool_item: (nullable): a #GtkToolItem + * @tool_item: a #GtkToolItem * @menu_item_id: a string used to identify @menu_item - * @menu_item: a #GtkMenuItem to be used in the overflow menu + * @menu_item: (nullable): a #GtkMenuItem to use in the overflow menu, or %NULL * * Sets the #GtkMenuItem used in the toolbar overflow menu. The * @menu_item_id is used to identify the caller of this function and |