Drop uses of @returns syntax

This commit is contained in:
Matthias Clasen 2011-11-21 13:12:58 -05:00
parent 7e8b7a72ac
commit 7814718152
2 changed files with 7 additions and 4 deletions

View File

@ -377,8 +377,6 @@ gtk_range_class_init (GtkRangeClass *class)
* @range: the #GtkRange that received the signal
* @scroll: the type of scroll action that was performed
* @value: the new value resulting from the scroll action
* @returns: %TRUE to prevent other handlers from being invoked for the
* signal, %FALSE to propagate the signal further
*
* The #GtkRange::change-value signal is emitted when a scroll action is
* performed on a range. It allows an application to determine the
@ -396,6 +394,9 @@ gtk_range_class_init (GtkRangeClass *class)
* It is not possible to use delayed update policies in an overridden
* #GtkRange::change-value handler.
*
* Returns: %TRUE to prevent other handlers from being invoked for
* the signal, %FALSE to propagate the signal further
*
* Since: 2.6
*/
signals[CHANGE_VALUE] =

View File

@ -2524,7 +2524,6 @@ gtk_widget_class_init (GtkWidgetClass *klass)
* @x: the x coordinate of the current cursor position
* @y: the y coordinate of the current cursor position
* @time: the timestamp of the motion event
* @returns: whether the cursor position is in a drop zone
*
* The drag-motion signal is emitted on the drop site when the user
* moves the cursor over the widget during a drag. The signal handler
@ -2609,6 +2608,8 @@ gtk_widget_class_init (GtkWidgetClass *klass)
* }
* }
* ]|
*
* Returns: whether the cursor position is in a drop zone
*/
widget_signals[DRAG_MOTION] =
g_signal_new (I_("drag-motion"),
@ -2630,7 +2631,6 @@ gtk_widget_class_init (GtkWidgetClass *klass)
* @x: the x coordinate of the current cursor position
* @y: the y coordinate of the current cursor position
* @time: the timestamp of the motion event
* @returns: whether the cursor position is in a drop zone
*
* The ::drag-drop signal is emitted on the drop site when the user drops
* the data onto the widget. The signal handler must determine whether
@ -2642,6 +2642,8 @@ gtk_widget_class_init (GtkWidgetClass *klass)
* directly or in a #GtkWidget::drag-data-received handler which gets
* triggered by calling gtk_drag_get_data() to receive the data for one
* or more of the supported targets.
*
* Returns: whether the cursor position is in a drop zone
*/
widget_signals[DRAG_DROP] =
g_signal_new (I_("drag-drop"),