| 602 | } |
| 603 | |
| 604 | void levelkeypad::OnKillfocusLevelGoalNameEdit() { |
| 605 | char str[256]; |
| 606 | |
| 607 | ((CEdit *)GetDlgItem(IDC_LEVEL_GOAL_NAME_EDIT))->GetWindowText(str, 255); |
| 608 | Level_goals.GoalSetName(m_current_goal, str); |
| 609 | |
| 610 | UpdateDialog(); |
| 611 | } |
| 612 | |
| 613 | void levelkeypad::OnKillfocusLevelGoalLocNameEdit() { |
| 614 | char str[256]; |
nothing calls this directly
no test coverage detected