[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

@@ -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
{

View File

@@ -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;