diff options
author | Sophie Herold <sophie@hemio.de> | 2020-11-21 16:33:40 +0100 |
---|---|---|
committer | Sophie Herold <sophie@hemio.de> | 2020-11-21 16:33:40 +0100 |
commit | 1e01b9079d5299a86f88377badee8b686ed03a05 (patch) | |
tree | 1f18a7268b6f70e529803fe7e1438fde240457ba /gtk/gtkapplication.c | |
parent | be688c46f2d0290d70f9c8b245cd87324ac23c00 (diff) | |
download | gtk+-1e01b9079d5299a86f88377badee8b686ed03a05.tar.gz |
Fix some nullable return annotations
Diffstat (limited to 'gtk/gtkapplication.c')
-rw-r--r-- | gtk/gtkapplication.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkapplication.c b/gtk/gtkapplication.c index 2806cd7cf4..7b438f1581 100644 --- a/gtk/gtkapplication.c +++ b/gtk/gtkapplication.c @@ -888,7 +888,7 @@ gtk_application_set_menubar (GtkApplication *application, * Returns the menu model that has been set with * gtk_application_set_menubar(). * - * Returns: (transfer none): the menubar for windows of @application + * Returns: (nullable) (transfer none): the menubar for windows of @application */ GMenuModel * gtk_application_get_menubar (GtkApplication *application) @@ -1174,7 +1174,7 @@ gtk_application_handle_window_map (GtkApplication *application, * See [Automatic resources][automatic-resources] * for more information. * - * Returns: (transfer none): Gets the menu with the + * Returns: (nullable) (transfer none): Gets the menu with the * given id from the automatically loaded resources */ GMenu * |