quartz: fix quartz build

The quartz backend has its own implementation of these that
collide since the gtkdragdest.c extraction.

https://bugzilla.gnome.org/show_bug.cgi?id=764712
This commit is contained in:
Christian Hergert 2016-04-24 00:46:15 -07:00 committed by Christian Hergert
parent 4f63d83955
commit 0b88d7976c
2 changed files with 2 additions and 12 deletions

View File

@ -737,7 +737,6 @@ gtk_base_c_sources = \
gtkcsswidgetnode.c \
gtkcsswin32sizevalue.c \
gtkdialog.c \
gtkdragdest.c \
gtkdragsource.c \
gtkdrawingarea.c \
gtkeditable.c \
@ -959,7 +958,8 @@ gtk_base_c_sources += \
else
gtk_base_c_sources += \
gtkclipboard.c \
gtkdnd.c
gtkdnd.c \
gtkdragdest.c
endif
nodist_gtk_c_sources =

View File

@ -46,7 +46,6 @@
#include "gtkiconhelperprivate.h"
typedef struct _GtkDragSourceInfo GtkDragSourceInfo;
typedef struct _GtkDragDestSite GtkDragDestSite;
typedef struct _GtkDragDestInfo GtkDragDestInfo;
typedef struct _GtkDragFindData GtkDragFindData;
@ -82,15 +81,6 @@ struct _GtkDragSourceInfo
gboolean delete;
};
struct _GtkDragDestSite
{
GtkDestDefaults flags;
GtkTargetList *target_list;
GdkDragAction actions;
guint have_drag : 1;
guint track_motion : 1;
};
struct _GtkDragDestInfo
{
GtkWidget *widget; /* Widget in which drag is in */