diff -r e173a6f9a021 -r 0c0112fff3d2 pidgin/gtkutils.c --- a/pidgin/gtkutils.c Sat Apr 26 13:23:38 2014 +0200 +++ b/pidgin/gtkutils.c Sat Apr 26 13:39:11 2014 +0200 @@ -29,13 +29,6 @@ # include #endif /*_WIN32*/ -#ifdef USE_GTKSPELL -# include -# ifdef _WIN32 -# include "win32/wspell.h" -# endif -#endif - #include #include "conversation.h" @@ -899,25 +892,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)