summaryrefslogtreecommitdiff
path: root/src/gtk-utils.c
diff options
context:
space:
mode:
authorElias Aebi <[email protected]>2013-11-16 08:45:07 +0100
committerElias Aebi <[email protected]>2013-11-16 08:45:07 +0100
commit8d284101a0ee5714a198424926612a163c3c691f (patch)
tree6bb18ba82419c259f1eec4bf6c1c3676a872992e /src/gtk-utils.c
parent3b99041059ea2147c296443a9460be67443776d0 (diff)
downloadengrampa-8d284101a0ee5714a198424926612a163c3c691f.tar.bz2
engrampa-8d284101a0ee5714a198424926612a163c3c691f.tar.xz
fix the GTK3 version
Diffstat (limited to 'src/gtk-utils.c')
-rw-r--r--src/gtk-utils.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gtk-utils.c b/src/gtk-utils.c
index 8082127..3c55ffe 100644
--- a/src/gtk-utils.c
+++ b/src/gtk-utils.c
@@ -78,6 +78,9 @@ _gtk_message_dialog_new (GtkWindow *parent,
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
+#if !GTK_CHECK_VERSION(2,22,0)
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+#endif
gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
gtk_container_set_border_width (GTK_CONTAINER (content_area), 6);
gtk_box_set_spacing (GTK_BOX (content_area), 8);
@@ -213,6 +216,9 @@ _gtk_request_dialog_run (GtkWindow *parent,
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
+#if !GTK_CHECK_VERSION(2,22,0)
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+#endif
gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
gtk_container_set_border_width (GTK_CONTAINER (content_area), 6);
gtk_box_set_spacing (GTK_BOX (content_area), 8);
@@ -304,6 +310,9 @@ _gtk_yesno_dialog_new (GtkWindow *parent,
content_area = gtk_dialog_get_content_area (GTK_DIALOG (d));
+#if !GTK_CHECK_VERSION(2,22,0)
+ gtk_dialog_set_has_separator (GTK_DIALOG (d), FALSE);
+#endif
gtk_container_set_border_width (GTK_CONTAINER (d), 6);
gtk_container_set_border_width (GTK_CONTAINER (content_area), 6);
gtk_box_set_spacing (GTK_BOX (content_area), 8);
@@ -391,6 +400,9 @@ _gtk_error_dialog_new (GtkWindow *parent,
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
+#if !GTK_CHECK_VERSION(2,22,0)
+ gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
+#endif
gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
gtk_container_set_border_width (GTK_CONTAINER (content_area), 6);
gtk_box_set_spacing (GTK_BOX (content_area), 8);