Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
ziesski committed Jul 11, 2024
1 parent 48ae0d5 commit 83ca899
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -577,12 +577,12 @@ void start_table_output( bool /*for_instructor*/,
student_data.push_back(counter); table.set(0,counter++,TableCell("ffffff","USERNAME"));
student_data.push_back(counter); table.set(0,counter++,TableCell("ffffff","NUMERIC ID"));
if (DISPLAY_INSTRUCTOR_NOTES || DISPLAY_FINAL_GRADE) {
table.set(0,counter++,TableCell("ffffff","LAST (LEGAL)"));
table.set(0,counter++,TableCell("ffffff","FIRST (LEGAL)"));
table.set(0,counter++,TableCell("ffffff","FAMILY (LEGAL)"));
table.set(0,counter++,TableCell("ffffff","GIVEN (LEGAL)"));
}
int last_name_counter=counter;
table.set(0,counter++,TableCell("ffffff","LAST"));
student_data.push_back(counter); table.set(0,counter++,TableCell("ffffff","FIRST"));
table.set(0,counter++,TableCell("ffffff","FAMILY"));
student_data.push_back(counter); table.set(0,counter++,TableCell("ffffff","GIVEN"));
student_data.push_back(last_name_counter);
student_data.push_back(counter); table.set(0,counter++,TableCell(grey_divider));

Expand Down

0 comments on commit 83ca899

Please sign in to comment.