diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-10-03 15:54:52 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-10-03 15:54:52 +0000 |
commit | 70ae6a0e8336bd80f12cd97130f047f4ed33a9c2 (patch) | |
tree | 4fe213a3d298d5b564276b0c06515cdd422894c1 /gtk/gtktreednd.c | |
parent | 29d0ac8db57daf64d99d92c0e162a395982c265f (diff) | |
download | gtk+-70ae6a0e8336bd80f12cd97130f047f4ed33a9c2.tar.gz |
Apply a patch by Behdad Esfahbod to reduce relocations. (#359053)
2006-10-03 Matthias Clasen <mclasen@redhat.com>
* gtk/*.c, gdk/*.c: Apply a patch by Behdad Esfahbod to
reduce relocations. (#359053)
Diffstat (limited to 'gtk/gtktreednd.c')
-rw-r--r-- | gtk/gtktreednd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktreednd.c b/gtk/gtktreednd.c index 1f5d99d2f4..02cb54b43f 100644 --- a/gtk/gtktreednd.c +++ b/gtk/gtktreednd.c @@ -30,7 +30,7 @@ gtk_tree_drag_source_get_type (void) if (!our_type) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (GtkTreeDragSourceIface), /* class_size */ NULL, /* base_init */ @@ -59,7 +59,7 @@ gtk_tree_drag_dest_get_type (void) if (!our_type) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (GtkTreeDragDestIface), /* class_size */ NULL, /* base_init */ |