diff options
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-bonobo.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index e103b256e3..49f1a59978 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2003-01-09 Chris Toshok <toshok@ximian.com> + * gui/component/select-names/e-select-names-bonobo.c + (e_select_names_bonobo_new): call e_select_names_bonobo_construct + on the newly created object. + +2003-01-09 Chris Toshok <toshok@ximian.com> + * gui/component/Makefile.am: addressbook-config.etspec is gone. * gui/component/addressbook-config.c: make the sources table be a diff --git a/addressbook/gui/component/select-names/e-select-names-bonobo.c b/addressbook/gui/component/select-names/e-select-names-bonobo.c index a8284a0f83..8b125e9078 100644 --- a/addressbook/gui/component/select-names/e-select-names-bonobo.c +++ b/addressbook/gui/component/select-names/e-select-names-bonobo.c @@ -455,6 +455,8 @@ e_select_names_bonobo_new (void) select_names = g_object_new (E_TYPE_SELECT_NAMES_BONOBO, NULL); + e_select_names_bonobo_construct (select_names); + return select_names; } |