context menu action: copy label
| 215 | |
| 216 | // context menu action: copy label |
| 217 | void CoinControlDialog::copyLabel() |
| 218 | { |
| 219 | if (ui->radioTreeMode->isChecked() && contextMenuItem->text(COLUMN_LABEL).length() == 0 && contextMenuItem->parent()) |
| 220 | GUIUtil::setClipboard(contextMenuItem->parent()->text(COLUMN_LABEL)); |
| 221 | else |
| 222 | GUIUtil::setClipboard(contextMenuItem->text(COLUMN_LABEL)); |
| 223 | } |
| 224 | |
| 225 | // context menu action: copy address |
| 226 | void CoinControlDialog::copyAddress() |
nothing calls this directly
no test coverage detected