aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-link-action.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-09-07 04:08:18 +0800
committerChristian Persch <chpe@src.gnome.org>2006-09-07 04:08:18 +0800
commit60861941d740b92a1eab06f45cfa3db337a537e2 (patch)
treebe6299645c1f96ddd99be9eb0bba8457f65d0550 /src/ephy-link-action.c
parent3f939976388408a4e5887f431d6c7dbd034d57d6 (diff)
downloadgsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar
gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar.gz
gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar.bz2
gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar.lz
gsoc2013-epiphany-60861941d740b92a1eab06f45cfa3db337a537e2.tar.xz
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 'src/ephy-link-action.c')
-rw-r--r--src/ephy-link-action.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-link-action.c b/src/ephy-link-action.c
index 3a3543221..5c5d5f96c 100644
--- a/src/ephy-link-action.c
+++ b/src/ephy-link-action.c
@@ -168,7 +168,7 @@ ephy_link_action_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EphyLinkActionClass),
NULL, /* base_init */
@@ -180,7 +180,7 @@ ephy_link_action_get_type (void)
0, /* n_preallocs */
NULL /* instance_init */
};
- static const GInterfaceInfo link_info =
+ const GInterfaceInfo link_info =
{
NULL,
NULL,
@@ -205,7 +205,7 @@ ephy_link_action_group_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EphyLinkActionGroupClass),
NULL, /* base_init */
@@ -217,7 +217,7 @@ ephy_link_action_group_get_type (void)
0, /* n_preallocs */
NULL /* instance_init */
};
- static const GInterfaceInfo link_info =
+ const GInterfaceInfo link_info =
{
NULL,
NULL,