]> Pileus Git - ~andy/gtk/commitdiff
Fix #317844
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 26 Oct 2005 13:42:53 +0000 (13:42 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 26 Oct 2005 13:42:53 +0000 (13:42 +0000)
ChangeLog
ChangeLog.pre-2-10
gdk/x11/gdkdnd-x11.c

index a2ce65a7fde5a12f8fc1b3783f4a9d16610cee90..edacd06533a3f23048d55bed65703a5a68efdfec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
index a2ce65a7fde5a12f8fc1b3783f4a9d16610cee90..edacd06533a3f23048d55bed65703a5a68efdfec 100644 (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):
index de321428ee449d95061c068f97bc723f4d1047f0..e69ea6f6fb10feae33a68db93a59e2c002dd1260 100644 (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 },