| 668 | } |
| 669 | |
| 670 | void WindowMain::updateNote(QTableWidgetItem* item) |
| 671 | { |
| 672 | QString text = item->text(); |
| 673 | userinfo["account"][item->row()]["note"] = text.toStdString(); |
| 674 | m_config->updateConfig(userinfo.dump()); |
| 675 | } |
| 676 | |
| 677 | void WindowMain::copyEntireRow(int row) |
| 678 | { |
nothing calls this directly
no test coverage detected