name corrected

This commit is contained in:
Johannes Wendel
2020-01-09 23:48:10 +01:00
parent e4dd4b648e
commit 9c5006cda8
3 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ DisplayController::DisplayController(std::map<std::string, std::shared_ptr<items
this->display_cycle_thread = std::thread(&DisplayController::cycle_displays, this); this->display_cycle_thread = std::thread(&DisplayController::cycle_displays, this);
activate_displays(); activate_displays();
CLOG(DEBUG, OUTPUT_LOGGER) << "Created DisplayController and started cycling them."; CLOG(DEBUG, OUTPUT_LOGGER) << "Created DisplayController and started cycling them.";
} }

View File

@@ -43,7 +43,7 @@ public:
std::string get_name() const override std::string get_name() const override
{ {
return "EightDigitDisplay " + name; return name;
} }
}; };

View File

@@ -40,7 +40,7 @@ public:
std::string get_name() const override std::string get_name() const override
{ {
return "EightDigitDisplay " + name; return name;
} }
}; };