diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-02-13 00:37:05 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:34 +0800 |
commit | 274697623e2a6749a3b173c28f4832d9e88019e3 (patch) | |
tree | 5edbcc1f1cff8b9b00c49bbdea505647570bd3ed /calendar/gui/e-select-names-editable.c | |
parent | 2952f3482a58a6c325a80a7fbd7ef6c5f727507d (diff) | |
download | gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.tar gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.tar.gz gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.tar.bz2 gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.tar.lz gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.tar.xz gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.tar.zst gsoc2013-evolution-274697623e2a6749a3b173c28f4832d9e88019e3.zip |
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.
Diffstat (limited to 'calendar/gui/e-select-names-editable.c')
-rw-r--r-- | calendar/gui/e-select-names-editable.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-select-names-editable.c b/calendar/gui/e-select-names-editable.c index c177c5231b..52d6b82ed0 100644 --- a/calendar/gui/e-select-names-editable.c +++ b/calendar/gui/e-select-names-editable.c @@ -40,14 +40,14 @@ esne_cell_editable_init (GtkCellEditableIface *iface) } static void -esne_finalize (GObject *obj) +esne_finalize (GObject *object) { - ESelectNamesEditable *esne = (ESelectNamesEditable *) obj; + ESelectNamesEditable *esne = (ESelectNamesEditable *) object; g_free (esne->priv); - if (G_OBJECT_CLASS (parent_class)->finalize) - G_OBJECT_CLASS (parent_class)->finalize (obj); + /* Chain up to parent's finalize() method. */ + G_OBJECT_CLASS (parent_class)->finalize (object); } static void |