Skip to content

Commit

Permalink
fix radio buttons not showing labels in generated C code
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcoles committed Jan 8, 2024
1 parent 4db77e5 commit 1d71045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cSourceGen.e
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ PROC genHeader(screenObject:PTR TO screenObject, rexxObject:PTR TO rexxObject, w
self.writeLine(' NewList( newList );')
self.writeLine(' while(*nameList)')
self.writeLine(' {')
self.writeLine(' AddTail(newList, AllocRadioButtonNode(RBNA_Labels, *nameList, TAG_END));')
self.writeLine(' AddTail(newList, AllocRadioButtonNode(0,RBNA_Labels, *nameList, TAG_END));')
self.writeLine(' nameList++;')
self.writeLine(' }')
self.writeLine(' }')
Expand Down

0 comments on commit 1d71045

Please sign in to comment.