mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 06:52:36 +01:00
GUI: remove now unneeded 'm_balances' field from overviewpage
This commit is contained in:
parent
050e8b1391
commit
4584d300a4
2 changed files with 7 additions and 10 deletions
|
@ -148,8 +148,6 @@ OverviewPage::OverviewPage(const PlatformStyle *platformStyle, QWidget *parent)
|
|||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
m_balances.balance = -1;
|
||||
|
||||
// use a SingleColorIcon for the "out of sync warning" icon
|
||||
QIcon icon = m_platform_style->SingleColorIcon(QStringLiteral(":/icons/warning"));
|
||||
ui->labelTransactionsStatus->setIcon(icon);
|
||||
|
@ -178,8 +176,9 @@ void OverviewPage::handleTransactionClicked(const QModelIndex &index)
|
|||
void OverviewPage::setPrivacy(bool privacy)
|
||||
{
|
||||
m_privacy = privacy;
|
||||
if (m_balances.balance != -1) {
|
||||
setBalance(m_balances);
|
||||
const auto& balances = walletModel->getCachedBalance();
|
||||
if (balances.balance != -1) {
|
||||
setBalance(balances);
|
||||
}
|
||||
|
||||
ui->listTransactions->setVisible(!m_privacy);
|
||||
|
@ -198,7 +197,6 @@ OverviewPage::~OverviewPage()
|
|||
void OverviewPage::setBalance(const interfaces::WalletBalances& balances)
|
||||
{
|
||||
BitcoinUnit unit = walletModel->getOptionsModel()->getDisplayUnit();
|
||||
m_balances = balances;
|
||||
if (walletModel->wallet().isLegacy()) {
|
||||
if (walletModel->wallet().privateKeysDisabled()) {
|
||||
ui->labelBalance->setText(BitcoinUnits::formatWithPrivacy(unit, balances.watch_only_balance, BitcoinUnits::SeparatorStyle::ALWAYS, m_privacy));
|
||||
|
@ -306,10 +304,10 @@ void OverviewPage::changeEvent(QEvent* e)
|
|||
|
||||
void OverviewPage::updateDisplayUnit()
|
||||
{
|
||||
if(walletModel && walletModel->getOptionsModel())
|
||||
{
|
||||
if (m_balances.balance != -1) {
|
||||
setBalance(m_balances);
|
||||
if (walletModel && walletModel->getOptionsModel()) {
|
||||
const auto& balances = walletModel->getCachedBalance();
|
||||
if (balances.balance != -1) {
|
||||
setBalance(balances);
|
||||
}
|
||||
|
||||
// Update txdelegate->unit with the current unit
|
||||
|
|
|
@ -52,7 +52,6 @@ private:
|
|||
Ui::OverviewPage *ui;
|
||||
ClientModel *clientModel;
|
||||
WalletModel *walletModel;
|
||||
interfaces::WalletBalances m_balances;
|
||||
bool m_privacy{false};
|
||||
|
||||
const PlatformStyle* m_platform_style;
|
||||
|
|
Loading…
Add table
Reference in a new issue