aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/merging/eab-contact-merging.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@novell.com>2005-01-22 05:53:43 +0800
committerRodney Dawes <dobey@src.gnome.org>2005-01-22 05:53:43 +0800
commitd03a5b84de992ea32e5c71e07c4064552a442954 (patch)
tree7986e84f26a0f7df159e4e87e7f2261562a910f2 /addressbook/gui/merging/eab-contact-merging.c
parentca1b5bd325a2054597548fda181de793aece23e3 (diff)
downloadgsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.tar
gsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.tar.gz
gsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.tar.bz2
gsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.tar.lz
gsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.tar.xz
gsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.tar.zst
gsoc2013-evolution-d03a5b84de992ea32e5c71e07c4064552a442954.zip
Fix some spacing and remove the separator for HIG compliance Set proper
2005-01-21 Rodney Dawes <dobey@novell.com> * gui/merging/eab-contact-duplicate-detected.glade: Fix some spacing and remove the separator for HIG compliance * gui/merging/eab-contact-merging.c (match_query_callback): Set proper border widths on some dialog containers for the HIG Fixes #41228 svn path=/trunk/; revision=28497
Diffstat (limited to 'addressbook/gui/merging/eab-contact-merging.c')
-rw-r--r--addressbook/gui/merging/eab-contact-merging.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/addressbook/gui/merging/eab-contact-merging.c b/addressbook/gui/merging/eab-contact-merging.c
index 685739ed89..a43c56043d 100644
--- a/addressbook/gui/merging/eab-contact-merging.c
+++ b/addressbook/gui/merging/eab-contact-merging.c
@@ -15,6 +15,8 @@
#include "eab-contact-compare.h"
#include <glade/glade.h>
#include <gtk/gtksignal.h>
+#include <gtk/gtkdialog.h>
+#include <gtk/gtkcontainer.h>
#include "addressbook/gui/widgets/eab-contact-display.h"
typedef enum {
@@ -175,6 +177,10 @@ match_query_callback (EContact *contact, EContact *match, EABContactMatchType ty
widget = glade_xml_get_widget (ui, "dialog-duplicate-contact");
+ gtk_widget_ensure_style (widget);
+ gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (widget)->vbox), 0);
+ gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (widget)->action_area), 12);
+
g_signal_connect (widget, "response",
G_CALLBACK (response), lookup);