From 1dd15b523742d1366219de72f1e87414a6463c16 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 12 Jul 2018 13:53:50 +0200 Subject: [PATCH] dnd: Some documentation updates Don't mention dnd protocols, and do mention the new, split objects. --- gdk/gdkdrag.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gdk/gdkdrag.c b/gdk/gdkdrag.c index 58878c9076..a427803f25 100644 --- a/gdk/gdkdrag.c +++ b/gdk/gdkdrag.c @@ -77,14 +77,17 @@ G_DEFINE_ABSTRACT_TYPE (GdkDrag, gdk_drag, G_TYPE_OBJECT) * @short_description: Functions for controlling drag and drop handling * * These functions provide a low level interface for drag and drop. - * The X backend of GDK supports both the Xdnd and Motif drag and drop - * protocols transparently, the Win32 backend supports the WM_DROPFILES - * protocol. * + * The GdkDrag object represents the source side of an ongoing DND operation. + * It is created when a drag is started, and stays alive for duration of + * the DND operation. + * + * The GdkDrop object represents the target side of an ongoing DND operation. + * * GTK+ provides a higher level abstraction based on top of these functions, - * and so they are not normally needed in GTK+ applications. - * See the [Drag and Drop][gtk3-Drag-and-Drop] section of - * the GTK+ documentation for more information. + * and so they are not normally needed in GTK+ applications. See the + * [Drag and Drop][gtk4-Drag-and-Drop] section of the GTK+ documentation + * for more information. */ /**