diff options
author | Koop Mast <kwm@FreeBSD.org> | 2010-11-20 15:37:08 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2010-11-20 15:37:08 +0000 |
commit | 3680f27ebff58ece429c4e032f9ad84fb1372114 (patch) | |
tree | 6c5ff4664c1a779ddad350ac887e5706dbfdd4eb /www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c | |
parent | 02c6e6b485454dc3f5a27cbc887d9e4aaf376a36 (diff) |
Notes
Diffstat (limited to 'www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c')
-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 000000000000..ec390b5d8173 --- /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); + |