fix compile errors

This commit is contained in:
arthur.jamet
2021-06-17 19:24:49 +02:00
parent 7e6292134f
commit 1cf820bf87
7 changed files with 18 additions and 13 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ namespace BBM
//! @brief Constructor with the 3 callback
ButtonComponent(WAL::Entity &entity, WAL::Callback<WAL::Entity &, WAL::Wal &> callback)
: WAL::Component(entity),
onEvent(callback), _up(nullptr), _down(nullptr), _left(nullptr), _right(nullptr)
onEvent(callback), _up(nullptr), _down(nullptr), _right(nullptr), _left(nullptr)
{ }
ButtonComponent &setButtonLinks(WAL::Entity *up = nullptr, WAL::Entity *down = nullptr,