Bug 565665 - GtkTargetEntry member target should be const char *

This commit is contained in:
Michael Natterer
2010-11-24 21:01:45 +01:00
parent aaf8530177
commit c00b85bf3f

View File

@ -66,8 +66,9 @@ struct _GtkSelectionData
GdkDisplay *GSEAL (display); GdkDisplay *GSEAL (display);
}; };
struct _GtkTargetEntry { struct _GtkTargetEntry
gchar *target; {
const gchar *target;
guint flags; guint flags;
guint info; guint info;
}; };