diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-01-14 11:55:52 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:25 +0800 |
commit | 7a49a211783ec81b30a384fdec8c42b52cd2a794 (patch) | |
tree | 99238812663748379be6c5e6298b738287deb5a1 /addressbook/gui/merging | |
parent | fc26bbfc63cf5c4a8f3bfe1d792861fe2578d29a (diff) | |
download | gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.tar gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.tar.gz gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.tar.bz2 gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.tar.lz gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.tar.xz gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.tar.zst gsoc2013-evolution-7a49a211783ec81b30a384fdec8c42b52cd2a794.zip |
Dialogs no longer have separators.
Diffstat (limited to 'addressbook/gui/merging')
3 files changed, 1 insertions, 3 deletions
diff --git a/addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui b/addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui index 3bb61184b6..aefd3de172 100644 --- a/addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui +++ b/addressbook/gui/merging/eab-contact-commit-duplicate-detected.ui @@ -10,7 +10,6 @@ <property name="modal">False</property> <property name="resizable">True</property> <property name="destroy_with_parent">False</property> - <property name="has_separator">True</property> <child internal-child="vbox"> <object class="GtkVBox" id="dialog-vbox1"> <property name="visible">True</property> diff --git a/addressbook/gui/merging/eab-contact-duplicate-detected.ui b/addressbook/gui/merging/eab-contact-duplicate-detected.ui index 38d8f0e1d8..124b9c2787 100644 --- a/addressbook/gui/merging/eab-contact-duplicate-detected.ui +++ b/addressbook/gui/merging/eab-contact-duplicate-detected.ui @@ -14,7 +14,6 @@ <property name="skip_pager_hint">False</property> <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> - <property name="has_separator">False</property> <property name="height-request">400</property> <property name="width-request">500</property> <child internal-child="vbox"> diff --git a/addressbook/gui/merging/eab-contact-merging.c b/addressbook/gui/merging/eab-contact-merging.c index dd99a12dce..1aababe57a 100644 --- a/addressbook/gui/merging/eab-contact-merging.c +++ b/addressbook/gui/merging/eab-contact-merging.c @@ -221,7 +221,7 @@ mergeit (EContactMergingLookup *lookup) gint row = -1; gint value = 0, result; - dialog = (GtkDialog *)(gtk_dialog_new_with_buttons (_("Merge Contact"), NULL, GTK_DIALOG_NO_SEPARATOR, NULL)); + dialog = (GtkDialog *)(gtk_dialog_new_with_buttons (_("Merge Contact"), NULL, 0, NULL)); gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); content_area = gtk_dialog_get_content_area (dialog); |