summaryrefslogtreecommitdiff
path: root/src/ephy-link.c
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2016-02-27 16:07:53 -0600
committerMichael Catanzaro <mcatanzaro@igalia.com>2016-02-27 16:09:43 -0600
commitdb8c20923637d1b70f860195230dc5861e3db17f (patch)
tree587a179c767e801797e3dde4313cb7f1e2ee816d /src/ephy-link.c
parent9986da997e9269ebe9cc7c9a20e9bfcc0bd6117a (diff)
downloadepiphany-db8c20923637d1b70f860195230dc5861e3db17f.tar.gz
link: Use G_DECLARE_INTERFACE
Diffstat (limited to 'src/ephy-link.c')
-rw-r--r--src/ephy-link.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-link.c b/src/ephy-link.c
index 585f3866d..8ae4978ed 100644
--- a/src/ephy-link.c
+++ b/src/ephy-link.c
@@ -56,7 +56,7 @@ ephy_link_base_init (gpointer g_class)
("open-link",
EPHY_TYPE_LINK,
G_SIGNAL_RUN_LAST,
- G_STRUCT_OFFSET (EphyLinkIface, open_link),
+ G_STRUCT_OFFSET (EphyLinkInterface, open_link),
ephy_signal_accumulator_object, ephy_embed_get_type,
g_cclosure_marshal_generic,
GTK_TYPE_WIDGET /* Can't use an interface type here */,
@@ -78,7 +78,7 @@ ephy_link_get_type (void)
{
const GTypeInfo our_info =
{
- sizeof (EphyLinkIface),
+ sizeof (EphyLinkInterface),
ephy_link_base_init,
NULL,
};