mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-08 12:19:07 +02:00
[qt] remove unused parameter from getWarnings()
This commit is contained in:
parent
a595011f5a
commit
869b6314fd
@ -68,7 +68,7 @@ public:
|
||||
std::string getNetwork() override { return Params().NetworkIDString(); }
|
||||
void initLogging() override { InitLogging(); }
|
||||
void initParameterInteraction() override { InitParameterInteraction(); }
|
||||
std::string getWarnings(const std::string& type) override { return GetWarnings(type); }
|
||||
std::string getWarnings() override { return GetWarnings("gui"); }
|
||||
uint32_t getLogCategories() override { return LogInstance().GetCategoryMask(); }
|
||||
bool baseInitialize() override
|
||||
{
|
||||
|
@ -78,7 +78,7 @@ public:
|
||||
virtual void initParameterInteraction() = 0;
|
||||
|
||||
//! Get warnings.
|
||||
virtual std::string getWarnings(const std::string& type) = 0;
|
||||
virtual std::string getWarnings() = 0;
|
||||
|
||||
// Get log flags.
|
||||
virtual uint32_t getLogCategories() = 0;
|
||||
|
@ -135,7 +135,7 @@ BitcoinCore::BitcoinCore(interfaces::Node& node) :
|
||||
void BitcoinCore::handleRunawayException(const std::exception *e)
|
||||
{
|
||||
PrintExceptionContinue(e, "Runaway exception");
|
||||
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings("gui")));
|
||||
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings()));
|
||||
}
|
||||
|
||||
void BitcoinCore::initialize()
|
||||
@ -589,10 +589,10 @@ int GuiMain(int argc, char* argv[])
|
||||
}
|
||||
} catch (const std::exception& e) {
|
||||
PrintExceptionContinue(&e, "Runaway exception");
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings("gui")));
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings()));
|
||||
} catch (...) {
|
||||
PrintExceptionContinue(nullptr, "Runaway exception");
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings("gui")));
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings()));
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
@ -134,7 +134,7 @@ enum BlockSource ClientModel::getBlockSource() const
|
||||
|
||||
QString ClientModel::getStatusBarWarnings() const
|
||||
{
|
||||
return QString::fromStdString(m_node.getWarnings("gui"));
|
||||
return QString::fromStdString(m_node.getWarnings());
|
||||
}
|
||||
|
||||
OptionsModel *ClientModel::getOptionsModel()
|
||||
|
Loading…
x
Reference in New Issue
Block a user