diff options
author | 2018-08-22 09:53:15 +0900 | |
---|---|---|
committer | 2018-08-22 09:53:15 +0900 | |
commit | c2fdab514796f8f14cc59cf403a0fc557ce3c8f8 (patch) | |
tree | 43e2031108836ca9c8fc1ca2980259a398fa1fb2 /src/window_manager.hpp | |
parent | 621314943d21cdb3b7e51a4c3d0faefc44658a11 (diff) |
Rename class name LayerManager to LayerControl
Change-Id: I60315e2a71af60b2a8e7576bc4313983330b5b3d
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/window_manager.hpp')
-rw-r--r-- | src/window_manager.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window_manager.hpp b/src/window_manager.hpp index d77d23a..3088111 100644 --- a/src/window_manager.hpp +++ b/src/window_manager.hpp @@ -29,7 +29,7 @@ #include "hmi-debug.h" #include "request.hpp" #include "wm_error.hpp" -#include "layout_manager.hpp" +#include "wm_layer_control.hpp" struct json_object; @@ -281,7 +281,7 @@ class WindowManager std::unordered_map<std::string, struct compositor::rect> area2size; std::unordered_map<std::string, std::string> roleold2new; std::unordered_map<std::string, std::string> rolenew2old; - std::shared_ptr<LayoutManager> lm; + std::shared_ptr<LayerControl> lm; PMWrapper pmw; static const char* kDefaultOldRoleDb; |