diff options
author | Timm Bäder <mail@baedert.org> | 2016-01-24 10:48:48 +0100 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2016-01-24 10:48:48 +0100 |
commit | f0439264aa3648a2c556b61294580deb8d566d02 (patch) | |
tree | d771599174984ab2a44b65a17299e92e413d323d | |
parent | d6f989f59ced24949a686d7e7dadb69c61dd9b7a (diff) | |
download | gtk+-f0439264aa3648a2c556b61294580deb8d566d02.tar.gz |
gdkdnd: Fix signal docs
Signals all have at least one parameter, the object that received the
signal.
-rw-r--r-- | gdk/gdkdnd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdk/gdkdnd.c b/gdk/gdkdnd.c index b34b824b9b..b27c0c671f 100644 --- a/gdk/gdkdnd.c +++ b/gdk/gdkdnd.c @@ -272,6 +272,7 @@ gdk_drag_context_class_init (GdkDragContextClass *klass) /** * GdkDragContext::cancel: + * @context: The object on which the signal is emitted * * The drag and drop operation was cancelled. * @@ -292,6 +293,7 @@ gdk_drag_context_class_init (GdkDragContextClass *klass) /** * GdkDragContext::drop-performed: + * @context: The object on which the signal is emitted * @time: the time at which the drop happened. * * The drag and drop operation was performed on an accepting client. @@ -313,6 +315,7 @@ gdk_drag_context_class_init (GdkDragContextClass *klass) /** * GdkDragContext::dnd-finished: + * @context: The object on which the signal is emitted * * The drag and drop operation was finished, the drag destination * finished reading all data. The drag source can now free all @@ -335,6 +338,7 @@ gdk_drag_context_class_init (GdkDragContextClass *klass) /** * GdkDragContext::action-changed: + * @context: The object on which the signal is emitted * @action: The action currently chosen * * A new action is being chosen for the drag and drop operation. |