aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-selector-dialog.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-09-07 17:46:12 +0800
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-09-07 17:50:47 +0800
commit290a4853102e645d76318e8e09ef45420a6559bc (patch)
treef35da604f566a7e148709707c4a3b863e49066b5 /libempathy-gtk/empathy-contact-selector-dialog.c
parent0b6ef5b5eac2633e4c7660c58b2bb6f412dd1a2a (diff)
downloadgsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.tar
gsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.tar.gz
gsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.tar.bz2
gsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.tar.lz
gsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.tar.xz
gsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.tar.zst
gsoc2013-empathy-290a4853102e645d76318e8e09ef45420a6559bc.zip
Remove calls to gtk_dialog_set_has_separator() if building against GTK+ 3
gtk_dialog_set_has_separator() has been removed in GTK+ 3, but can't be removed (or the property's default value changed) in GTK+ 2 without breaking API. This adds a wrapper macro to keep the calls when building against GTK+ 2, and remove them when building against GTK+ 3.
Diffstat (limited to 'libempathy-gtk/empathy-contact-selector-dialog.c')
-rw-r--r--libempathy-gtk/empathy-contact-selector-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-selector-dialog.c b/libempathy-gtk/empathy-contact-selector-dialog.c
index 47a840240..7989e9ccc 100644
--- a/libempathy-gtk/empathy-contact-selector-dialog.c
+++ b/libempathy-gtk/empathy-contact-selector-dialog.c
@@ -316,7 +316,7 @@ empathy_contact_selector_dialog_init (EmpathyContactSelectorDialog *dialog)
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
/* Tweak the dialog */
- gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+ empathy_dialog_remove_separator (GTK_DIALOG (dialog));
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER_ON_PARENT);