context menu action: copy address
| 224 | |
| 225 | // context menu action: copy address |
| 226 | void CoinControlDialog::copyAddress() |
| 227 | { |
| 228 | if (ui->radioTreeMode->isChecked() && contextMenuItem->text(COLUMN_ADDRESS).length() == 0 && contextMenuItem->parent()) |
| 229 | GUIUtil::setClipboard(contextMenuItem->parent()->text(COLUMN_ADDRESS)); |
| 230 | else |
| 231 | GUIUtil::setClipboard(contextMenuItem->text(COLUMN_ADDRESS)); |
| 232 | } |
| 233 | |
| 234 | // context menu action: copy transaction id and vout index |
| 235 | void CoinControlDialog::copyTransactionOutpoint() |
nothing calls this directly
no test coverage detected