diff options
author | Xan Lopez <xan@gnome.org> | 2010-06-13 05:04:06 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-06-13 05:04:06 +0800 |
commit | 864d20152054e684a5cbb0b2dbde8f6bdf63f698 (patch) | |
tree | 7bb084e23f9d5753041d4138231ab08f97d32b55 /src/pdm-dialog.c | |
parent | 53e41b39402f4fe7e81b8167d549b4d6b2eb1519 (diff) | |
download | gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.gz gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.tar.zst gsoc2013-epiphany-864d20152054e684a5cbb0b2dbde8f6bdf63f698.zip |
pdm-dialog: nasty hack to compile with GSEAL enabled
Diffstat (limited to 'src/pdm-dialog.c')
-rw-r--r-- | src/pdm-dialog.c | 22 |
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); |