| 981 | } |
| 982 | |
| 983 | void levelkeypad::OnKillfocusLevelGoalCompletionEdit() { |
| 984 | char str[2560]; |
| 985 | |
| 986 | ((CEdit *)GetDlgItem(IDC_LEVEL_GOAL_COMPLETION_EDIT))->GetWindowText(str, 2559); |
| 987 | Level_goals.GoalSetCompletionMessage(m_current_goal, str); |
| 988 | |
| 989 | UpdateDialog(); |
| 990 | } |
| 991 | |
| 992 | void levelkeypad::OnLgActivateRadio() { |
| 993 | int flags = LGF_COMP_MASK; |
nothing calls this directly
no test coverage detected