diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-19 09:52:05 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-19 09:52:05 +0800 |
commit | a645910fc85109532fddde2d33a4d172120ef163 (patch) | |
tree | 53629a0a68377dde22edeb92b547ff9ab457fcd7 | |
parent | 36ef28a7595066e225a696a1da68a866eeb3c037 (diff) | |
download | gsoc2013-evolution-a645910fc85109532fddde2d33a4d172120ef163.tar.gz gsoc2013-evolution-a645910fc85109532fddde2d33a4d172120ef163.tar.zst gsoc2013-evolution-a645910fc85109532fddde2d33a4d172120ef163.zip |
show the custom table.
2002-11-18 Chris Toshok <toshok@ximian.com>
* gui/component/select-names/e-select-names.c
(e_select_names_init): show the custom table.
svn path=/trunk/; revision=18834
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 7739837525..95187320fd 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2002-11-18 Chris Toshok <toshok@ximian.com> + * gui/component/select-names/e-select-names.c + (e_select_names_init): show the custom table. + +2002-11-18 Chris Toshok <toshok@ximian.com> + * gui/widgets/gal-view-minicard.c (gal_view_minicard_attach): remove the cast to (int) - column_width is a double. diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 41c5a628c1..0e666a62d3 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -504,6 +504,7 @@ e_select_names_init (ESelectNames *e_select_names) e_select_names->model = g_object_get_data(G_OBJECT(e_select_names->table), "model"); e_select_names->adapter = g_object_get_data(G_OBJECT(e_select_names->table), "adapter"); e_select_names->without = g_object_get_data(G_OBJECT(e_select_names->table), "without"); + gtk_widget_show (GTK_WIDGET (e_select_names->table)); e_select_names->status_message = glade_xml_get_widget (gui, "status-message"); if (e_select_names->status_message && !GTK_IS_LABEL (e_select_names->status_message)) |