aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-python-extension.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-python-extension.c')
-rw-r--r--src/ephy-python-extension.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-python-extension.c b/src/ephy-python-extension.c
index 4d6e31c35..7ff5bcd6e 100644
--- a/src/ephy-python-extension.c
+++ b/src/ephy-python-extension.c
@@ -342,7 +342,7 @@ ephy_python_extension_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EphyPythonExtensionClass),
NULL, /* base_init */
@@ -354,7 +354,7 @@ ephy_python_extension_get_type (void)
0, /* n_preallocs */
(GInstanceInitFunc) ephy_python_extension_init
};
- static const GInterfaceInfo extension_info =
+ const GInterfaceInfo extension_info =
{
(GInterfaceInitFunc) ephy_python_extension_iface_init,
NULL,