mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Fix #317844
This commit is contained in:
parent
15f5226ed6
commit
653a6dd9db
@ -1,3 +1,9 @@
|
||||
2005-10-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
|
||||
seem to affect the placement of the data in the readonly
|
||||
section, and causes problems with some compilers. (#317844)
|
||||
|
||||
2005-10-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-10-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/x11/gdkdnd-x11.c: Remove an extra const which doesn't
|
||||
seem to affect the placement of the data in the readonly
|
||||
section, and causes problems with some compilers. (#317844)
|
||||
|
||||
2005-10-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_cell_process_action):
|
||||
|
@ -136,7 +136,7 @@ static GList *contexts;
|
||||
const static struct {
|
||||
const char *atom_name;
|
||||
GdkFilterFunc func;
|
||||
} const xdnd_filters[] = {
|
||||
} xdnd_filters[] = {
|
||||
{ "XdndEnter", xdnd_enter_filter },
|
||||
{ "XdndLeave", xdnd_leave_filter },
|
||||
{ "XdndPosition", xdnd_position_filter },
|
||||
|
Loading…
Reference in New Issue
Block a user