diff options
author | Chris Toshok <toshok@ximian.com> | 2003-05-12 04:48:15 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-05-12 04:48:15 +0800 |
commit | 5b3149c1696899b50becfaecc4950f5a6a633c2e (patch) | |
tree | be95b3e5389e861864abb583dba17791616acb25 /addressbook/gui/component/select-names/e-select-names.c | |
parent | b08b55549aa624127c23a7aae1e01639fac25d76 (diff) | |
download | gsoc2013-evolution-5b3149c1696899b50becfaecc4950f5a6a633c2e.tar.gz gsoc2013-evolution-5b3149c1696899b50becfaecc4950f5a6a633c2e.tar.zst gsoc2013-evolution-5b3149c1696899b50becfaecc4950f5a6a633c2e.zip |
[ fixes bug #41245 ] fix spacing/border widths as per HIG.
2003-05-11 Chris Toshok <toshok@ximian.com>
[ fixes bug #41245 ]
* gui/component/select-names/select-names.glade: fix
spacing/border widths as per HIG.
* gui/component/select-names/e-select-names.c
(e_select_names_init): set the border width/spacing on widgets we
create here.
svn path=/trunk/; revision=21144
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 962a745abe..f009fbbd63 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -500,6 +500,10 @@ e_select_names_init (ESelectNames *e_select_names) gtk_dialog_set_default_response (GTK_DIALOG (e_select_names), GTK_RESPONSE_OK); + gtk_container_set_border_width (GTK_CONTAINER (e_select_names), 12); + gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (e_select_names)->vbox), 6); + gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (e_select_names)->action_area), 12); + gtk_window_set_modal (GTK_WINDOW (e_select_names), TRUE); gtk_window_set_title(GTK_WINDOW(e_select_names), _("Select Contacts from Addressbook")); @@ -579,8 +583,6 @@ e_select_names_dispose (GObject *object) { ESelectNames *e_select_names = E_SELECT_NAMES(object); - printf("eselectnames dispose\n"); - if (e_select_names->status_id) { g_signal_handler_disconnect(e_select_names->model, e_select_names->status_id); e_select_names->status_id = 0; |