diff options
Diffstat (limited to 'www/gtkhtml3/files')
-rw-r--r-- | www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c b/www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c new file mode 100644 index 000000000..ec390b5d8 --- /dev/null +++ b/www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c @@ -0,0 +1,13 @@ +--- components/editor/gtkhtml-spell-dialog.c.orig 2010-09-19 17:57:00.000000000 +0000 ++++ components/editor/gtkhtml-spell-dialog.c 2010-09-19 17:57:41.000000000 +0000 +@@ -443,7 +443,9 @@ spell_dialog_init (GtkhtmlSpellDialog *d + + gtk_dialog_add_button ( + GTK_DIALOG (dialog), GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE); +- gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE); ++#if !GTK_CHECK_VERSION(2,90,7) ++ g_object_set (dialog, "has-separator", FALSE, NULL); ++#endif + gtk_window_set_title (GTK_WINDOW (dialog), _("Spell Checker")); + gtk_container_set_border_width (GTK_CONTAINER (dialog), 5); + |