dnd: Remove GdkDragContext.dest_surface

The variable is now unused
This commit is contained in:
Benjamin Otte
2018-06-15 08:39:51 +02:00
parent bf3ea24489
commit b3d424c2d7
2 changed files with 0 additions and 4 deletions

View File

@@ -313,9 +313,6 @@ gdk_drag_context_finalize (GObject *object)
if (context->source_surface)
g_object_unref (context->source_surface);
if (context->dest_surface)
g_object_unref (context->dest_surface);
G_OBJECT_CLASS (gdk_drag_context_parent_class)->finalize (object);
}

View File

@@ -63,7 +63,6 @@ struct _GdkDragContext {
/*< private >*/
GdkSurface *source_surface;
GdkSurface *dest_surface;
GdkSurface *drag_surface;
GdkContentProvider *content;