|
From: Andre R. <and...@us...> - 2004-10-24 19:16:47
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25688/Frontier/Common/source Modified Files: opbuttons.c Log Message: In opbuttonsattach, create new list in local hdllistrecord and assign to buttonlist field of windowinfo handle to make Xcode/GCC happy. Index: opbuttons.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/opbuttons.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** opbuttons.c 23 Oct 2004 22:39:03 -0000 1.2 --- opbuttons.c 24 Oct 2004 19:16:36 -0000 1.3 *************** *** 47,50 **** --- 47,51 ---- hdlhashnode hn; short ct = 0; + hdllistrecord hlist; (**hinfo).flhidebuttons = false; *************** *** 52,57 **** (**hinfo).flsyntheticbuttons = true; ! opnewlist (&(hdllistrecord) (**hinfo).buttonlist, false); ! /*loop through all of the items in the table*/ --- 53,60 ---- (**hinfo).flsyntheticbuttons = true; ! opnewlist (&hlist, false); ! ! (**hinfo).buttonlist = (Handle) hlist; ! /*loop through all of the items in the table*/ |