[qt] remove unused parameter from getWarnings()

This commit is contained in:
John Newbery
2019-12-15 12:34:03 -03:00
parent a595011f5a
commit 869b6314fd
4 changed files with 6 additions and 6 deletions

View File

@@ -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()