| 1279 | } |
| 1280 | |
| 1281 | void BitcoinGUI::setHDStatus(bool privkeyDisabled, int hdEnabled) |
| 1282 | { |
| 1283 | labelWalletHDStatusIcon->setThemedPixmap(privkeyDisabled ? QStringLiteral(":/icons/eye") : hdEnabled ? QStringLiteral(":/icons/hd_enabled") : QStringLiteral(":/icons/hd_disabled"), STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE); |
| 1284 | labelWalletHDStatusIcon->setToolTip(privkeyDisabled ? tr("Private key <b>disabled</b>") : hdEnabled ? tr("HD key generation is <b>enabled</b>") : tr("HD key generation is <b>disabled</b>")); |
| 1285 | labelWalletHDStatusIcon->show(); |
| 1286 | } |
| 1287 | |
| 1288 | void BitcoinGUI::setEncryptionStatus(int status) |
| 1289 | { |
nothing calls this directly
no test coverage detected