From 274697623e2a6749a3b173c28f4832d9e88019e3 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 12 Feb 2011 11:37:05 -0500 Subject: Remove NULL checks for GObject methods. As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks. --- filter/e-rule-editor.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'filter') diff --git a/filter/e-rule-editor.c b/filter/e-rule-editor.c index 2491ac95d5..a69f40b7fa 100644 --- a/filter/e-rule-editor.c +++ b/filter/e-rule-editor.c @@ -571,8 +571,7 @@ rule_editor_dispose (GObject *object) } /* Chain up to parent's dispose() method. */ - if (G_OBJECT_CLASS (e_rule_editor_parent_class)->dispose) - G_OBJECT_CLASS (e_rule_editor_parent_class)->dispose (object); + G_OBJECT_CLASS (e_rule_editor_parent_class)->dispose (object); } static void -- cgit