diff options
author | Havoc Pennington <hp@pobox.com> | 2000-04-15 16:22:52 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-04-15 16:22:52 +0000 |
commit | 4fe58c01f9c9af6e711e319d2d03aaccf411d0a8 (patch) | |
tree | 8286e82a4cfd92cb47fb04efe812d9cd470c7ae4 /gdk/gdkdnd.h | |
parent | affbc828b37eef8decdd8294f0bc645f6de87f2f (diff) | |
download | gtk+-4fe58c01f9c9af6e711e319d2d03aaccf411d0a8.tar.gz |
clean up enum format, remove extra comma, this keeps scanner scripts from
2000-04-15 Havoc Pennington <hp@pobox.com>
* gdk/gdkdnd.h: clean up enum format, remove extra comma,
this keeps scanner scripts from getting confused.
* gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
data, rather than void
Diffstat (limited to 'gdk/gdkdnd.h')
-rw-r--r-- | gdk/gdkdnd.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdk/gdkdnd.h b/gdk/gdkdnd.h index 3d5e802e9b..916bd2e8e0 100644 --- a/gdk/gdkdnd.h +++ b/gdk/gdkdnd.h @@ -9,7 +9,8 @@ extern "C" { typedef struct _GdkDragContext GdkDragContext; -typedef enum { +typedef enum +{ GDK_ACTION_DEFAULT = 1 << 0, GDK_ACTION_COPY = 1 << 1, GDK_ACTION_MOVE = 1 << 2, @@ -18,14 +19,15 @@ typedef enum { GDK_ACTION_ASK = 1 << 5 } GdkDragAction; -typedef enum { +typedef enum +{ GDK_DRAG_PROTO_MOTIF, GDK_DRAG_PROTO_XDND, GDK_DRAG_PROTO_ROOTWIN, /* A root window with nobody claiming * drags */ GDK_DRAG_PROTO_NONE, /* Not a valid drag window */ GDK_DRAG_PROTO_WIN32_DROPFILES, /* The simple WM_DROPFILES dnd */ - GDK_DRAG_PROTO_OLE2, /* The complex OLE2 dnd (not implemented) */ + GDK_DRAG_PROTO_OLE2 /* The complex OLE2 dnd (not implemented) */ } GdkDragProtocol; /* Structure that holds information about a drag in progress. |