Replace GXor by GXxor. Seems to have been a typo.

1998-03-10  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* gdk/gdkgc.c (gdk_gc_set_function): Replace GXor by GXxor.  Seems
	to have been a typo.
This commit is contained in:
Federico Mena Quintero
1998-03-10 19:13:50 +00:00
committed by Arturo Espinosa
parent 4db2561dd5
commit fabfc17d93
8 changed files with 36 additions and 1 deletions

View File

@ -430,7 +430,7 @@ gdk_gc_set_function (GdkGC *gc,
XSetFunction (private->xdisplay, private->xgc, GXinvert);
break;
case GDK_XOR:
XSetFunction (private->xdisplay, private->xgc, GXor);
XSetFunction (private->xdisplay, private->xgc, GXxor);
break;
}
}