| 1049 | } |
| 1050 | |
| 1051 | void matcenkeypad::OnMatCopyButton() { |
| 1052 | if (MatcenValid(m_matcen_id)) { |
| 1053 | MatCopyBuffer = *Matcen[m_matcen_id]; |
| 1054 | f_copy_buffer_valid = true; |
| 1055 | } |
| 1056 | |
| 1057 | UpdateDialog(); |
| 1058 | } |
| 1059 | |
| 1060 | void matcenkeypad::OnMatPasteButton() { |
| 1061 | if (MatcenValid(m_matcen_id) && f_copy_buffer_valid) { |
nothing calls this directly
no test coverage detected