diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-19 18:49:43 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-19 18:56:05 -0500 |
commit | 469d333aa27c67f7d9b2f3923d62fef8519ff2ba (patch) | |
tree | acacd39d222efb5f22738a36115ed946c43f7797 /gtk/gtkframe.c | |
parent | a6084e264de0c1471ba93a20dd74f19c92a8afc6 (diff) | |
download | gtk+-469d333aa27c67f7d9b2f3923d62fef8519ff2ba.tar.gz |
docs: use Returns: consistently
Instead of Return value:
Diffstat (limited to 'gtk/gtkframe.c')
-rw-r--r-- | gtk/gtkframe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkframe.c b/gtk/gtkframe.c index 98b4a75d4f..11b761b8e6 100644 --- a/gtk/gtkframe.c +++ b/gtk/gtkframe.c @@ -332,7 +332,7 @@ gtk_frame_get_property (GObject *object, * Creates a new #GtkFrame, with optional label @label. * If @label is %NULL, the label is omitted. * - * Return value: a new #GtkFrame widget + * Returns: a new #GtkFrame widget **/ GtkWidget* gtk_frame_new (const gchar *label) @@ -425,7 +425,7 @@ gtk_frame_set_label (GtkFrame *frame, * for the label widget if a non-%NULL argument was passed * to gtk_frame_new().) * - * Return value: the text in the label, or %NULL if there + * Returns: the text in the label, or %NULL if there * was no label widget or the lable widget was not * a #GtkLabel. This string is owned by GTK+ and * must not be modified or freed. @@ -501,7 +501,7 @@ gtk_frame_set_label_widget (GtkFrame *frame, * Retrieves the label widget for the frame. See * gtk_frame_set_label_widget(). * - * Return value: (transfer none): the label widget, or %NULL if there is none. + * Returns: (transfer none): the label widget, or %NULL if there is none. **/ GtkWidget * gtk_frame_get_label_widget (GtkFrame *frame) @@ -624,7 +624,7 @@ gtk_frame_set_shadow_type (GtkFrame *frame, * Retrieves the shadow type of the frame. See * gtk_frame_set_shadow_type(). * - * Return value: the current shadow type of the frame. + * Returns: the current shadow type of the frame. **/ GtkShadowType gtk_frame_get_shadow_type (GtkFrame *frame) |