aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2010-09-20 07:08:00 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-09-28 16:26:00 +0800
commit4c517ce646a64c528b7340d7d57a09c0242f1c8f (patch)
tree22d9a445c218af8947c2c18d2716e6bddda394cf /src
parent8031eb1f58dff35e0deb3b01f80d75b6dce16454 (diff)
downloadgsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.tar
gsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.tar.gz
gsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.tar.bz2
gsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.tar.lz
gsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.tar.xz
gsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.tar.zst
gsoc2013-empathy-4c517ce646a64c528b7340d7d57a09c0242f1c8f.zip
Don't use deprecated gtk_dialog_set_has_separator
This is deprecated in GTK+ 2.22 Bug #630107
Diffstat (limited to 'src')
-rw-r--r--src/empathy-accounts-dialog.c5
-rw-r--r--src/empathy-import-dialog.c5
-rw-r--r--src/empathy-preferences.c5
3 files changed, 0 insertions, 15 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 98301a485..35bea08ea 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -2161,11 +2161,6 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
gtk_window_set_type_hint (GTK_WINDOW (dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
- /* FIXME: Remove this once we unconditionally depend on GTK+ 3 */
-#ifndef HAVE_GTK3
- gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
-#endif
-
/* add dialog buttons */
gtk_button_box_set_layout (GTK_BUTTON_BOX (action_area), GTK_BUTTONBOX_END);
diff --git a/src/empathy-import-dialog.c b/src/empathy-import-dialog.c
index 1fc00c0e5..da0c9d3ea 100644
--- a/src/empathy-import-dialog.c
+++ b/src/empathy-import-dialog.c
@@ -198,11 +198,6 @@ empathy_import_dialog_init (EmpathyImportDialog *self)
gtk_container_set_border_width (GTK_CONTAINER (self), 5);
gtk_window_set_title (GTK_WINDOW (self), _("Import Accounts"));
gtk_window_set_modal (GTK_WINDOW (self), TRUE);
-
- /* FIXME: Remove this once we unconditionally depend on GTK+ 3 */
-#ifndef HAVE_GTK3
- gtk_dialog_set_has_separator (GTK_DIALOG (self), FALSE);
-#endif
}
static void
diff --git a/src/empathy-preferences.c b/src/empathy-preferences.c
index edc405974..89133edb5 100644
--- a/src/empathy-preferences.c
+++ b/src/empathy-preferences.c
@@ -885,11 +885,6 @@ empathy_preferences_init (EmpathyPreferences *preferences)
GTK_WIN_POS_CENTER_ON_PARENT);
gtk_window_set_icon_name (GTK_WINDOW (preferences), "gtk-preferences");
- /* FIXME: Remove this once we unconditionally depend on GTK+ 3 */
-#ifndef HAVE_GTK3
- gtk_dialog_set_has_separator (GTK_DIALOG (preferences), FALSE);
-#endif
-
filename = empathy_file_lookup ("empathy-preferences.ui", "src");
gui = empathy_builder_get_file (filename,
"notebook", &priv->notebook,