diff -r 5eb4f6b78114 -r 25d39bb4d758 pidgin/gtkutils.c --- a/pidgin/gtkutils.c Fri Apr 25 16:55:07 2014 +0530 +++ b/pidgin/gtkutils.c Tue Apr 29 03:19:51 2014 +0530 @@ -29,13 +29,6 @@ # include #endif /*_WIN32*/ -#ifdef USE_GTKSPELL -# include -# ifdef _WIN32 -# include "win32/wspell.h" -# endif -#endif - #include #include "conversation.h" @@ -897,25 +890,6 @@ } void -pidgin_setup_gtkspell(GtkTextView *textview) -{ -#ifdef USE_GTKSPELL - GError *error = NULL; - char *locale = NULL; - - g_return_if_fail(textview != NULL); - g_return_if_fail(GTK_IS_TEXT_VIEW(textview)); - - if (gtkspell_new_attach(textview, locale, &error) == NULL && error) - { - purple_debug_warning("gtkspell", "Failed to setup GtkSpell: %s\n", - error->message); - g_error_free(error); - } -#endif /* USE_GTKSPELL */ -} - -void pidgin_save_accels_cb(GtkAccelGroup *accel_group, guint arg1, GdkModifierType arg2, GClosure *arg3, gpointer data)