From: Frank Schlottmann-G. <fs...@us...> - 2000-11-24 17:23:05
|
Update of /cvsroot/firebird/interbase/pyxis In directory slayer.i.sourceforge.net:/tmp/cvs-serv24964/interbase/pyxis Modified Files: debug.c Log Message: Another little fix in pyxis/debug.c that nobody ever will notice :-) Will print correct names for this forms stuff now. Index: debug.c =================================================================== RCS file: /cvsroot/firebird/interbase/pyxis/debug.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** debug.c 2000/08/03 20:53:44 1.1.1.1 --- debug.c 2000/11/24 17:23:02 1.2 *************** *** 20,23 **** --- 20,29 ---- * All Rights Reserved. * Contributor(s): ______________________________________. + * $Log$ + * Revision 1.2 2000/11/24 17:23:02 fsg + * Another little fix in pyxis/debug.c that nobody + * ever will notice :-) + * Will print correct names for this forms stuff now. + * */ *************** *** 29,33 **** extern OBJ PYXIS_get_attribute_value(); ! #define ATT(name) "name", static SCHAR *attribute_names [] = { --- 35,42 ---- extern OBJ PYXIS_get_attribute_value(); ! /* changed "name" to #name to get what was intended ! FSG 24.Nov.2000 ! */ ! #define ATT(name) #name, static SCHAR *attribute_names [] = { |