void gdk_drag_status (GdkDragContext *context,
GdkDragAction action,
guint32 time);
-void gdk_drop_finish (GdkDragContext *context,
+void gdk_drag_finish (GdkDragContext *context,
gboolean success,
guint32 time);
GdkAtom gdk_drag_get_selection (GdkDragContext *context);
GdkDragCancelReason
gdk_drag_drop_done
gdk_drag_begin
-gdk_drop_finish
+gdk_drag_finish
GdkDragAction
GDK_ACTION_ALL
gdk_drag_status
}
/**
- * gdk_drop_finish:
+ * gdk_drag_finish:
* @context: a #GdkDragContext
* @success: %TRUE if the data was successfully received
* @time_: the timestamp for this operation
* This function is called by the drag destination.
*/
void
-gdk_drop_finish (GdkDragContext *context,
+gdk_drag_finish (GdkDragContext *context,
gboolean success,
guint32 time_)
{
GdkDragAction action,
guint32 time_);
GDK_AVAILABLE_IN_ALL
-void gdk_drop_finish (GdkDragContext *context,
+void gdk_drag_finish (GdkDragContext *context,
gboolean success,
guint32 time_);
*
* Returns the possible actions for this #GdkDrop. If this value
* contains multiple actions - ie gdk_drag_action_is_unique()
- * returns %FALSE for the result - gdk_drop_finish() must choose
+ * returns %FALSE for the result - gdk_drag_finish() must choose
* the action to use when accepting the drop.
*
* This value may change over the lifetime of the #GdkDrop both
* as a response to source side actions as well as to calls to
- * gdk_drop_status() or gdk_drop_finish(). The source side will
+ * gdk_drop_status() or gdk_drag_finish(). The source side will
* not change this value anymore once a drop has started.
*
* Returns: The possible #GdkDragActions
success ? "dropped successfully" : "dropped unsuccessfully"));
/* FIXME: This is temporary, until the code is fixed to ensure that
- * gdk_drop_finish () is called by GTK.
+ * gdk_drag_finish () is called by GTK.
*/
if (use_ole2_dnd)
{
g_return_if_fail (context != NULL);
- GDK_NOTE (DND, g_print ("gdk_drop_finish\n"));
+ GDK_NOTE (DND, g_print ("gdk_drag_finish\n"));
if (!use_ole2_dnd)
{
{
g_return_if_fail (GDK_IS_DRAG_CONTEXT (context));
- gdk_drop_finish (context, success, time);
+ gdk_drag_finish (context, success, time);
}
/**