16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 03:29:19 +02:00

maintenance: minor code cleanup

This commit is contained in:
tmj-fstate
2018-09-07 16:24:05 +02:00
parent 3b00005857
commit e4789db1d5
13 changed files with 79 additions and 80 deletions

View File

@@ -15,7 +15,7 @@ http://mozilla.org/MPL/2.0/.
class drivingaid_panel : public ui_panel {
public:
drivingaid_panel( std::string const Name, bool const Isopen )
drivingaid_panel( std::string const &Name, bool const Isopen )
: ui_panel( Name, Isopen )
{}
@@ -31,7 +31,7 @@ private:
class timetable_panel : public ui_panel {
public:
timetable_panel( std::string const Name, bool const Isopen )
timetable_panel( std::string const &Name, bool const Isopen )
: ui_panel( Name, Isopen ) {}
void update() override;
@@ -46,7 +46,7 @@ private:
class debug_panel : public ui_panel {
public:
debug_panel( std::string const Name, bool const Isopen )
debug_panel( std::string const &Name, bool const Isopen )
: ui_panel( Name, Isopen ) {}
void update() override;
@@ -97,7 +97,7 @@ private:
class transcripts_panel : public ui_panel {
public:
transcripts_panel( std::string const Name, bool const Isopen )
transcripts_panel( std::string const &Name, bool const Isopen )
: ui_panel( Name, Isopen ) {}
void update() override;