diff options
Diffstat (limited to 'src/window_manager.hpp')
-rw-r--r-- | src/window_manager.hpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/window_manager.hpp b/src/window_manager.hpp index bd9d134..7591357 100644 --- a/src/window_manager.hpp +++ b/src/window_manager.hpp @@ -30,9 +30,13 @@ #include "request.hpp" #include "wm_error.hpp" #include "wm_layer_control.hpp" +extern "C" +{ +#include <afb/afb-binding.h> +} struct json_object; -struct afb_event; + namespace wl { struct display; @@ -89,7 +93,7 @@ struct id_allocator unsigned sid = this->next++; this->id2name[sid] = name; this->name2id[name] = sid; - HMI_DEBUG("wm", "allocated new id %u with name %s", sid, name.c_str()); + HMI_DEBUG("allocated new id %u with name %s", sid, name.c_str()); return sid; } @@ -98,7 +102,7 @@ struct id_allocator { this->id2name[sid] = name; this->name2id[name] = sid; - HMI_DEBUG("wm", "register id %u with name %s", sid, name.c_str()); + HMI_DEBUG("register id %u with name %s", sid, name.c_str()); return; } |