scalebutton: Annotate the return type

Instead of just listing the return type of get_plus_button() and
get_minus_button() in the documentation, we can use the (type)
annotation to ensure that the introspection data reflects the actual
type of the returned widget.
This commit is contained in:
Emmanuele Bassi 2015-11-30 14:09:19 +00:00
parent f30b4ba22e
commit 11eab60f43

View File

@ -670,7 +670,7 @@ gtk_scale_button_set_adjustment (GtkScaleButton *button,
* *
* Retrieves the plus button of the #GtkScaleButton. * Retrieves the plus button of the #GtkScaleButton.
* *
* Returns: (transfer none): the plus button of the #GtkScaleButton as a #GtkButton * Returns: (transfer none) (type Gtk.Button): the plus button of the #GtkScaleButton as a #GtkButton
* *
* Since: 2.14 * Since: 2.14
*/ */
@ -688,7 +688,7 @@ gtk_scale_button_get_plus_button (GtkScaleButton *button)
* *
* Retrieves the minus button of the #GtkScaleButton. * Retrieves the minus button of the #GtkScaleButton.
* *
* Returns: (transfer none): the minus button of the #GtkScaleButton as a #GtkButton * Returns: (transfer none) (type Gtk.Button): the minus button of the #GtkScaleButton as a #GtkButton
* *
* Since: 2.14 * Since: 2.14
*/ */