-- Indicate to the window port that the inventory has been changed. -- Merely calls repopulate_perminvent() for window-ports that leave the window up, otherwise empty. */
| 1250 | window up, otherwise empty. |
| 1251 | */ |
| 1252 | void |
| 1253 | mswin_update_inventory(int arg) |
| 1254 | { |
| 1255 | logDebug("mswin_update_inventory(%d)\n", arg); |
| 1256 | if (iflags.perm_invent && program_state.something_worth_saving |
| 1257 | && iflags.window_inited && WIN_INVEN != WIN_ERR) |
| 1258 | repopulate_perminvent(); |
| 1259 | } |
| 1260 | |
| 1261 | win_request_info * |
| 1262 | mswin_ctrl_nhwindow( |
no test coverage detected