GtkWidget: Add some missing nullable annotations

This commit is contained in:
Timm Bäder
2015-12-01 13:31:08 +01:00
parent 150728d6b0
commit 1551ad4908

View File

@ -6162,7 +6162,7 @@ gtk_widget_size_allocate (GtkWidget *widget,
* Find the common ancestor of @widget_a and @widget_b that * Find the common ancestor of @widget_a and @widget_b that
* is closest to the two widgets. * is closest to the two widgets.
* *
* Returns: the closest common ancestor of @widget_a and * Returns: (nullable): the closest common ancestor of @widget_a and
* @widget_b or %NULL if @widget_a and @widget_b do not * @widget_b or %NULL if @widget_a and @widget_b do not
* share a common ancestor. * share a common ancestor.
**/ **/
@ -9679,7 +9679,7 @@ gtk_widget_set_parent (GtkWidget *widget,
* *
* Returns the parent container of @widget. * Returns the parent container of @widget.
* *
* Returns: (transfer none): the parent container of @widget, or %NULL * Returns: (transfer none) (nullable): the parent container of @widget, or %NULL
**/ **/
GtkWidget * GtkWidget *
gtk_widget_get_parent (GtkWidget *widget) gtk_widget_get_parent (GtkWidget *widget)
@ -10485,7 +10485,7 @@ gtk_widget_set_font_options (GtkWidget *widget,
* Returns the #cairo_font_options_t used for Pango rendering. When not set, * Returns the #cairo_font_options_t used for Pango rendering. When not set,
* the defaults font options for the #GdkScreen will be used. * the defaults font options for the #GdkScreen will be used.
* *
* Returns: (transfer none): the #cairo_font_options_t or %NULL if not set * Returns: (transfer none) (nullable): the #cairo_font_options_t or %NULL if not set
* *
* Since: 3.18 * Since: 3.18
**/ **/
@ -10552,7 +10552,7 @@ gtk_widget_set_font_map (GtkWidget *widget,
* *
* Gets the font map that has been set with gtk_widget_set_font_map(). * Gets the font map that has been set with gtk_widget_set_font_map().
* *
* Returns: (transfer none): A #PangoFontMap, or %NULL * Returns: (transfer none) (nullable): A #PangoFontMap, or %NULL
* *
* Since: 3.18 * Since: 3.18
*/ */
@ -10651,7 +10651,7 @@ gtk_widget_create_pango_layout (GtkWidget *widget,
* the application and should not be modified. The pixbuf should be freed * the application and should not be modified. The pixbuf should be freed
* after use with g_object_unref(). * after use with g_object_unref().
* *
* Returns: (transfer full): a new pixbuf, or %NULL if the * Returns: (transfer full) (nullable): a new pixbuf, or %NULL if the
* stock ID wasnt known * stock ID wasnt known
* *
* Since: 3.0 * Since: 3.0
@ -11624,7 +11624,7 @@ gtk_widget_get_toplevel (GtkWidget *widget)
* Note that unlike gtk_widget_is_ancestor(), gtk_widget_get_ancestor() * Note that unlike gtk_widget_is_ancestor(), gtk_widget_get_ancestor()
* considers @widget to be an ancestor of itself. * considers @widget to be an ancestor of itself.
* *
* Returns: (transfer none): the ancestor widget, or %NULL if not found * Returns: (transfer none) (nullable): the ancestor widget, or %NULL if not found
**/ **/
GtkWidget* GtkWidget*
gtk_widget_get_ancestor (GtkWidget *widget, gtk_widget_get_ancestor (GtkWidget *widget,
@ -12568,7 +12568,7 @@ is_my_window (GtkWidget *widget,
* @widget: a #GtkWidget * @widget: a #GtkWidget
* @device: a #GdkDevice * @device: a #GdkDevice
* *
* Returns: the window of @widget that @device is in, or %NULL * Returns: (nullable): the window of @widget that @device is in, or %NULL
*/ */
GdkWindow * GdkWindow *
_gtk_widget_get_device_window (GtkWidget *widget, _gtk_widget_get_device_window (GtkWidget *widget,
@ -13481,7 +13481,7 @@ gtk_widget_class_set_accessible_role (GtkWidgetClass *widget_class,
* does not use the default way to create accessibles, %NULL will always be * does not use the default way to create accessibles, %NULL will always be
* returned. * returned.
* *
* Returns: the accessible for @widget or %NULL if none has been * Returns: (nullable): the accessible for @widget or %NULL if none has been
* created yet. * created yet.
**/ **/
AtkObject * AtkObject *
@ -15447,7 +15447,7 @@ gtk_widget_set_tooltip_text (GtkWidget *widget,
* *
* Gets the contents of the tooltip for @widget. * Gets the contents of the tooltip for @widget.
* *
* Returns: the tooltip text, or %NULL. You should free the * Returns: (nullable): the tooltip text, or %NULL. You should free the
* returned string with g_free() when done. * returned string with g_free() when done.
* *
* Since: 2.12 * Since: 2.12
@ -15495,7 +15495,7 @@ gtk_widget_set_tooltip_markup (GtkWidget *widget,
* *
* Gets the contents of the tooltip for @widget. * Gets the contents of the tooltip for @widget.
* *
* Returns: the tooltip text, or %NULL. You should free the * Returns: (nullable): the tooltip text, or %NULL. You should free the
* returned string with g_free() when done. * returned string with g_free() when done.
* *
* Since: 2.12 * Since: 2.12