| 620 | } |
| 621 | |
| 622 | void levelkeypad::OnKillfocusLevelGoalDescEdit() { |
| 623 | char str[2560]; |
| 624 | |
| 625 | ((CEdit *)GetDlgItem(IDC_LEVEL_GOAL_DESC_EDIT))->GetWindowText(str, 2559); |
| 626 | Level_goals.GoalSetDesc(m_current_goal, str); |
| 627 | |
| 628 | UpdateDialog(); |
| 629 | } |
| 630 | |
| 631 | void levelkeypad::OnLevelGoalNewItemButton() { |
| 632 | int item; |
nothing calls this directly
no test coverage detected