aboutsummaryrefslogtreecommitdiffstats
path: root/src/window_manager.hpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-22 13:43:42 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-22 14:04:23 +0900
commitc3291c967516a188789a860821471d8c872fbb47 (patch)
tree9a0af6b1e239d3486f750a04906473563dab6786 /src/window_manager.hpp
parent58da0c77b98af1b771e4af28b42d0a3ddec09877 (diff)
Fix util function HMI_*
To reduce coding, change HMI_* Change-Id: Ib28b6a3c2756253e665498e459f5e1e165095941 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/window_manager.hpp')
-rw-r--r--src/window_manager.hpp10
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;
}