This commit is contained in:
Matthias Clasen 2005-10-26 13:42:53 +00:00
parent 15f5226ed6
commit 653a6dd9db
3 changed files with 13 additions and 1 deletions

View File

@ -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):

View File

@ -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):

View File

@ -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 },