mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-04-03 20:35:17 +02:00
qt: Factor out WalletModel::getDisplayName()
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2011-2018 The Bitcoin Core developers
|
||||
// Copyright (c) 2011-2019 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
@@ -578,6 +578,12 @@ QString WalletModel::getWalletName() const
|
||||
return QString::fromStdString(m_wallet->getWalletName());
|
||||
}
|
||||
|
||||
QString WalletModel::getDisplayName() const
|
||||
{
|
||||
const QString name = getWalletName();
|
||||
return name.isEmpty() ? "["+tr("default wallet")+"]" : name;
|
||||
}
|
||||
|
||||
bool WalletModel::isMultiwallet()
|
||||
{
|
||||
return m_node.getWallets().size() > 1;
|
||||
|
||||
Reference in New Issue
Block a user