| 136 | } |
| 137 | |
| 138 | void AddButtonShortcut(QAbstractButton* button, const QKeySequence& shortcut) |
| 139 | { |
| 140 | QObject::connect(new QShortcut(shortcut, button), &QShortcut::activated, [button]() { button->animateClick(); }); |
| 141 | } |
| 142 | |
| 143 | bool parseBitcoinURI(const QUrl &uri, SendCoinsRecipient *out) |
| 144 | { |