diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2008-06-04 02:30:44 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2008-06-04 02:30:44 +0800 |
commit | 1986408a1eccdf098ad8d55b552d8e0831ef27fb (patch) | |
tree | edba46c1bf9848600789778f130505675524a351 /addressbook | |
parent | 64a710c95d9018ce4e7ef5ef0fe0562fa7a47cab (diff) | |
download | gsoc2013-evolution-1986408a1eccdf098ad8d55b552d8e0831ef27fb.tar.gz gsoc2013-evolution-1986408a1eccdf098ad8d55b552d8e0831ef27fb.tar.zst gsoc2013-evolution-1986408a1eccdf098ad8d55b552d8e0831ef27fb.zip |
Use non-deprecated gtk+ api.
2008-06-03 Kjartan Maraas <kmaraas@gnome.org>
* gui/merging/eab-contact-merging.c: (mergeit):
Use non-deprecated gtk+ api.
svn path=/trunk/; revision=35583
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/merging/eab-contact-merging.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 6d065289c4..12892e782b 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2008-06-03 Kjartan Maraas <kmaraas@gnome.org> + + * gui/merging/eab-contact-merging.c: (mergeit): + Use non-deprecated gtk+ api. + 2008-05-22 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #534360 diff --git a/addressbook/gui/merging/eab-contact-merging.c b/addressbook/gui/merging/eab-contact-merging.c index de1d832b53..3cfeb67fbf 100644 --- a/addressbook/gui/merging/eab-contact-merging.c +++ b/addressbook/gui/merging/eab-contact-merging.c @@ -188,7 +188,7 @@ mergeit (EContactMergingLookup *lookup) int value = 0, result; dialog = (GtkDialog *)(gtk_dialog_new_with_buttons (_("Merge Contact"), NULL, GTK_DIALOG_NO_SEPARATOR, NULL)); - gtk_container_border_width (GTK_CONTAINER(dialog), 5); + gtk_container_set_border_width (GTK_CONTAINER(dialog), 5); scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), |