[Commits] gtkaspell.c 1.9.2.76 1.9.2.77

wwp at claws-mail.org wwp at claws-mail.org
Sat Nov 5 17:44:55 CET 2011


Update of /home/claws-mail/claws/src/gtk
In directory claws-mail:/tmp/cvs-serv30823/src/gtk

Modified Files:
      Tag: gtk2
	gtkaspell.c 
Log Message:
2011-11-05 [wwp]	3.7.10cvs72

	* src/gtk/gtkaspell.c
		Fix compilation where 'null' is undefined (use NULL instead).

Index: gtkaspell.c
===================================================================
RCS file: /home/claws-mail/claws/src/gtk/gtkaspell.c,v
retrieving revision 1.9.2.76
retrieving revision 1.9.2.77
diff -u -d -r1.9.2.76 -r1.9.2.77
--- gtkaspell.c	5 Nov 2011 14:45:49 -0000	1.9.2.76
+++ gtkaspell.c	5 Nov 2011 16:44:53 -0000	1.9.2.77
@@ -1192,7 +1192,7 @@
 {
 	GtkTextView *gtktext;
 	
-	if (gtkaspell == null)
+	if (gtkaspell == NULL)
 		return;
 		
 	gtktext = gtkaspell->gtktext;
@@ -1208,7 +1208,7 @@
 {
 	GtkTextView *gtktext;
 
-	if (gtkaspell == null)
+	if (gtkaspell == NULL)
 		return;
 		
 	gtktext = gtkaspell->gtktext;



More information about the Commits mailing list