diff options
author | Chris Toshok <toshok@ximian.com> | 2003-01-10 09:06:44 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-01-10 09:06:44 +0800 |
commit | fd67bd851b0a590aff334faf1889a5c0804f869a (patch) | |
tree | de2977dd297cae507183bfe4785f881d61b153ec /addressbook | |
parent | eb4f1afd8937c3ce5e255e4de3bad018d9e2eff7 (diff) | |
download | gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.tar gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.tar.gz gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.tar.bz2 gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.tar.lz gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.tar.xz gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.tar.zst gsoc2013-evolution-fd67bd851b0a590aff334faf1889a5c0804f869a.zip |
call e_select_names_bonobo_construct on the newly created object.
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.
svn path=/trunk/; revision=19384
Diffstat (limited to 'addressbook')
-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; } |