copy column of selected row to clipboard
| 246 | |
| 247 | // copy column of selected row to clipboard |
| 248 | void ReceiveCoinsDialog::copyColumnToClipboard(int column) |
| 249 | { |
| 250 | QModelIndex firstIndex = selectedRow(); |
| 251 | if (!firstIndex.isValid()) { |
| 252 | return; |
| 253 | } |
| 254 | GUIUtil::setClipboard(model->getRecentRequestsTableModel()->data(firstIndex.child(firstIndex.row(), column), Qt::EditRole).toString()); |
| 255 | } |
| 256 | |
| 257 | // context menu |
| 258 | void ReceiveCoinsDialog::showMenu(const QPoint &point) |
nothing calls this directly
no test coverage detected