diff src/conversation.c @ 3867:43e396e94095

[gaim-migrate @ 4019] compile cleanups by nathan committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sun, 03 Nov 2002 07:36:09 +0000
parents 994b5c4d15dd
children b7d5c2a2b0d9
line wrap: on
line diff
--- a/src/conversation.c	Sun Nov 03 07:32:07 2002 +0000
+++ b/src/conversation.c	Sun Nov 03 07:36:09 2002 +0000
@@ -63,9 +63,6 @@
 #include "pixmaps/download.xpm"
 #include "pixmaps/farted.xpm"
 
-static gchar *ispell_cmd[] = { "ispell", "-a", NULL };
-static gchar *aspell_cmd[] = { "aspell", "--sug-mode=fast","-a", NULL };
-
 int state_lock = 0;
 
 GdkPixmap *dark_icon_pm = NULL;
@@ -194,7 +191,7 @@
 	update_checkbox(c);
 	update_smilies(c);
 	plugin_event(event_new_conversation, name);
-	gtk_imhtml_to_bottom(c->text);
+	gtk_imhtml_to_bottom(GTK_IMHTML(c->text));
 	return c;
 }
 
@@ -1050,6 +1047,7 @@
 		g_signal_stop_emission_by_name(G_OBJECT(widget), "button_press_event");
 		return TRUE;
 	}
+	return FALSE;
 }
 
 static void got_typing_keypress(struct conversation *c, gboolean first) {
@@ -2617,7 +2615,7 @@
 
 	update_convo_status(c);
 
-	gtk_imhtml_to_bottom(c->text);
+	gtk_imhtml_to_bottom(GTK_IMHTML(c->text));
 }
 
 void update_convo_status(struct conversation *c) {