aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXan Lopez <xan@gnome.org>2010-06-13 05:04:06 +0800
committerXan Lopez <xan@gnome.org>2010-06-13 05:04:06 +0800
commit864d20152054e684a5cbb0b2dbde8f6bdf63f698 (patch)
tree7bb084e23f9d5753041d4138231ab08f97d32b55 /src
parent53e41b39402f4fe7e81b8167d549b4d6b2eb1519 (diff)
downloadgsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar
gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.gz
gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.bz2
gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.lz
gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.xz
gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.zst
gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.zip
pdm-dialog: nasty hack to compile with GSEAL enabled
Diffstat (limited to 'src')
-rw-r--r--src/pdm-dialog.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/src/pdm-dialog.c b/src/pdm-dialog.c
index 8b1633f83..da372740d 100644
--- a/src/pdm-dialog.c
+++ b/src/pdm-dialog.c
@@ -351,13 +351,25 @@ clear_all_dialog_checkbutton_toggled_cb (GtkToggleButton *toggle,
data->num_checked != 0);
}
+static GtkWidget*
+_gtk_message_dialog_get_content_area (GtkMessageDialog *dialog)
+{
+ GtkWidget *image, *parent;
+ GList *children;
+
+ image = gtk_message_dialog_get_image (dialog);
+ parent = gtk_widget_get_parent (image);
+ children = gtk_container_get_children (GTK_CONTAINER (parent));
+ return GTK_WIDGET (children->next->data);
+}
+
void
pdm_dialog_show_clear_all_dialog (EphyDialog *edialog,
GtkWidget *parent,
PdmClearAllDialogFlags flags)
{
GtkWidget *dialog, *vbox;
- GtkWidget *check, *label;
+ GtkWidget *check, *label, *content_area;
PdmClearAllDialogButtons *checkbuttons;
GtkWidget *button, *icon;
@@ -393,11 +405,17 @@ pdm_dialog_show_clear_all_dialog (EphyDialog *edialog,
gtk_dialog_set_default_response (GTK_DIALOG (dialog),
GTK_RESPONSE_CANCEL);
+#if 0
gtk_label_set_selectable (GTK_LABEL (GTK_MESSAGE_DIALOG (dialog)->label),
FALSE);
+#endif
vbox = gtk_vbox_new (FALSE, 6);
- gtk_box_pack_start (GTK_BOX (GTK_MESSAGE_DIALOG (dialog)->label->parent),
+ /* This is extremely evil, but at least we'll compile with
+ * GSEAL enabled until #328069 is resolved. If it's WONTFIXED
+ * we'll just do this from scratch with a normal GtkDialog */
+ content_area = _gtk_message_dialog_get_content_area (GTK_MESSAGE_DIALOG (dialog));
+ gtk_box_pack_start (GTK_BOX (content_area),
vbox, FALSE, FALSE, 0);
checkbuttons = g_slice_new0 (PdmClearAllDialogButtons);