summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Mikhaylenko <alexm@gnome.org>2022-02-21 13:20:59 +0500
committerAlexander Mikhaylenko <alexm@gnome.org>2022-02-21 13:20:59 +0500
commit6bdde8f07ac32e1eb7b8a506c9227c1dcd6228cb (patch)
treef0a4f2026b2f6ab57a6fe142740421f2891b84f3
parent7b75dab9e262c2ad28279513170267b46456fdd0 (diff)
downloadepiphany-6bdde8f07ac32e1eb7b8a506c9227c1dcd6228cb.tar.gz
search-engine-row: Remove finalize()
It's empty and just chains up. Part-of: <https://gitlab.gnome.org/GNOME/epiphany/-/merge_requests/1074>
-rw-r--r--src/preferences/ephy-search-engine-row.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/preferences/ephy-search-engine-row.c b/src/preferences/ephy-search-engine-row.c
index 257c8486c..303414c62 100644
--- a/src/preferences/ephy-search-engine-row.c
+++ b/src/preferences/ephy-search-engine-row.c
@@ -384,14 +384,6 @@ on_remove_button_clicked_cb (EphySearchEngineRow *row,
}
static void
-ephy_search_engine_row_finalize (GObject *object)
-{
- /* EphySearchEngineRow *self = (EphySearchEngineRow *)object; */
-
- G_OBJECT_CLASS (ephy_search_engine_row_parent_class)->finalize (object);
-}
-
-static void
ephy_search_engine_row_set_property (GObject *object,
guint prop_id,
const GValue *value,
@@ -468,7 +460,6 @@ ephy_search_engine_row_class_init (EphySearchEngineRowClass *klass)
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
- object_class->finalize = ephy_search_engine_row_finalize;
object_class->set_property = ephy_search_engine_row_set_property;
object_class->constructed = on_ephy_search_engine_row_constructed;