| 1134 | } |
| 1135 | |
| 1136 | static void |
| 1137 | topl_set_def(int new_def_idx) |
| 1138 | { |
| 1139 | Rect frame; |
| 1140 | SetPortWindowPort(theWindows[WIN_MESSAGE].its_window); |
| 1141 | topl_resp_rect(topl_def_idx, &frame); |
| 1142 | InvalWindowRect(theWindows[WIN_MESSAGE].its_window, &frame); |
| 1143 | topl_def_idx = new_def_idx; |
| 1144 | topl_resp_rect(new_def_idx, &frame); |
| 1145 | InvalWindowRect(theWindows[WIN_MESSAGE].its_window, &frame); |
| 1146 | } |
| 1147 | |
| 1148 | void |
| 1149 | topl_set_resp(char *resp, char def) |
no test coverage detected