diff options
Diffstat (limited to 'embed/ephy-search-entry.c')
-rw-r--r-- | embed/ephy-search-entry.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/embed/ephy-search-entry.c b/embed/ephy-search-entry.c index e0f1c5df1..859d9dd73 100644 --- a/embed/ephy-search-entry.c +++ b/embed/ephy-search-entry.c @@ -62,11 +62,11 @@ static int signals[LAST_SIGNAL] = {}; static void ephy_search_entry_editable_init (GtkEditableInterface *iface); static void ephy_search_entry_accessible_init (GtkAccessibleInterface *iface); -G_DEFINE_TYPE_WITH_CODE (EphySearchEntry, ephy_search_entry, GTK_TYPE_WIDGET, - G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE, - ephy_search_entry_editable_init) - G_IMPLEMENT_INTERFACE (GTK_TYPE_ACCESSIBLE, - ephy_search_entry_accessible_init)) +G_DEFINE_FINAL_TYPE_WITH_CODE (EphySearchEntry, ephy_search_entry, GTK_TYPE_WIDGET, + G_IMPLEMENT_INTERFACE (GTK_TYPE_EDITABLE, + ephy_search_entry_editable_init) + G_IMPLEMENT_INTERFACE (GTK_TYPE_ACCESSIBLE, + ephy_search_entry_accessible_init)) static void update_matches (EphySearchEntry *self) |