diff options
Diffstat (limited to 'src/ephy-tab.c')
-rw-r--r-- | src/ephy-tab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-tab.c b/src/ephy-tab.c index b5f99a4ff..2f4902664 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -189,7 +189,7 @@ ephy_tab_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyTabClass), NULL, /* base_init */ @@ -201,7 +201,7 @@ ephy_tab_get_type (void) 0, /* n_preallocs */ (GInstanceInitFunc) ephy_tab_init }; - static const GInterfaceInfo link_info = + const GInterfaceInfo link_info = { NULL, NULL, |