diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-09-07 04:08:18 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-09-07 04:08:18 +0800 |
commit | 60861941d740b92a1eab06f45cfa3db337a537e2 (patch) | |
tree | be6299645c1f96ddd99be9eb0bba8457f65d0550 /lib/widgets/ephy-tree-model-sort.c | |
parent | 3f939976388408a4e5887f431d6c7dbd034d57d6 (diff) | |
download | gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar.gz gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar.zst gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.zip |
Remove some unnecessary static data.
2006-09-06 Christian Persch <chpe@cvs.gnome.org>
* *.c *.cpp:
Remove some unnecessary static data.
Diffstat (limited to 'lib/widgets/ephy-tree-model-sort.c')
-rw-r--r-- | lib/widgets/ephy-tree-model-sort.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-tree-model-sort.c b/lib/widgets/ephy-tree-model-sort.c index dc6af7982..a9cd26045 100644 --- a/lib/widgets/ephy-tree-model-sort.c +++ b/lib/widgets/ephy-tree-model-sort.c @@ -61,7 +61,7 @@ ephy_tree_model_sort_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyTreeModelSortClass), NULL, /* base init */ @@ -73,7 +73,7 @@ ephy_tree_model_sort_get_type (void) 0, /* n_preallocs */ (GInstanceInitFunc) ephy_tree_model_sort_init }; - static const GInterfaceInfo multi_drag_source_info = + const GInterfaceInfo multi_drag_source_info = { (GInterfaceInitFunc) ephy_tree_model_sort_multi_drag_source_init, NULL, |