plugins/spellchk.c

changeset 6116
18a2bf1a4f13
parent 6063
8fbafa2e1846
child 6250
28e627163c3c
--- a/plugins/spellchk.c	Sun Jul 13 21:40:24 2003 +0000
+++ b/plugins/spellchk.c	Sun Jul 13 23:26:06 2003 +0000
@@ -1,12 +1,6 @@
 /*
  * A lot of this code (especially the config code) was taken directly
  * or nearly directly from xchat, version 1.4.2 by Peter Zelezny and others.
- *
- * TODO:
- *	? I think i did everything i want to with it.
- *
- * BUGS:
- *	? I think i fixed them all.
  */
 #include "internal.h"
 
@@ -225,9 +219,7 @@
 static void save_list();
 
 static void on_edited(GtkCellRendererText *cellrenderertext,
-	gchar *path,
-	gchar *arg2,
-	gpointer data)
+					  gchar *path, gchar *arg2, gpointer data)
 {
 	GtkTreeIter iter;
 	GValue val;
@@ -241,7 +233,6 @@
 	if(strcmp(arg2, g_value_get_string(&val))) {
 		gtk_list_store_set(model, &iter, GPOINTER_TO_INT(data), arg2, -1);
 		save_list();
-		printf("Editado! %s, %s\n", path, arg2);
 	}
 	g_value_unset(&val);
 }

mercurial