# HG changeset patch # User Herman Bloggs # Date 1048357970 0 # Node ID a9a831508b43750bf714f13374a345596247f644 # Parent 748c25897809911122d392e2d354f86b3b6d71d8 [gaim-migrate @ 5186] Including wspell.h for win32 gtkspell interface committer: Tailor Script diff -r 748c25897809 -r a9a831508b43 src/buddy_chat.c --- a/src/buddy_chat.c Sat Mar 22 18:30:14 2003 +0000 +++ b/src/buddy_chat.c Sat Mar 22 18:32:50 2003 +0000 @@ -37,6 +37,10 @@ #include "prpl.h" +#ifdef _WIN32 +#include "wspell.h" +#endif + static GList *chatentries = NULL; static GtkWidget *joinchat = NULL; static GtkWidget *jc_vbox = NULL; diff -r 748c25897809 -r a9a831508b43 src/gtkconv.c --- a/src/gtkconv.c Sat Mar 22 18:30:14 2003 +0000 +++ b/src/gtkconv.c Sat Mar 22 18:32:50 2003 +0000 @@ -48,6 +48,7 @@ #ifdef _WIN32 #include "win32dep.h" +#include "wspell.h" #endif static char nick_colors[][8] = { @@ -4446,6 +4447,7 @@ struct gaim_gtk_conversation *gtkconv; GtkSpell *spell; + debug_printf("gaim_gtkconv_toggle_spellchk\n"); for (cl = gaim_get_conversations(); cl != NULL; cl = cl->next) { conv = (struct gaim_conversation *)cl->data; diff -r 748c25897809 -r a9a831508b43 src/gtkutils.c --- a/src/gtkutils.c Sat Mar 22 18:30:14 2003 +0000 +++ b/src/gtkutils.c Sat Mar 22 18:32:50 2003 +0000 @@ -47,6 +47,9 @@ #include "prpl.h" #include "ui.h" +#ifdef _WIN32 +#include "wspell.h" +#endif void gaim_setup_imhtml(GtkWidget *imhtml)