Remove an extra const which doesn't seem to affect the placement of the

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)
This commit is contained in:
Matthias Clasen
2005-10-26 13:49:58 +00:00
committed by Matthias Clasen
parent 6562773a5a
commit b9200e9fc5
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 },