From 1b1051702003391f958f4bf68c5dfe88676d56d4 Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Fri, 7 Sep 2018 11:27:06 +0900 Subject: Remove wm_layer_name in wm_client Change-Id: I6b146ca41f9be311d0d21163e5fe23aeabbfe3fc Signed-off-by: Kazumasa Mitsunari --- src/applist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/applist.cpp') diff --git a/src/applist.cpp b/src/applist.cpp index 93c90ac..e27bd03 100644 --- a/src/applist.cpp +++ b/src/applist.cpp @@ -73,10 +73,10 @@ void AppList::addClient(const string &appid, unsigned layer, unsigned surface, c this->clientDump(); } -void AppList::addClient(const string &appid, unsigned layer, const string& layer_name, unsigned surface, const string &role) +void AppList::addClient(const string &appid, unsigned layer, const string &role) { std::lock_guard lock(this->mtx); - shared_ptr client = std::make_shared(appid, layer, layer_name, surface, role); + shared_ptr client = std::make_shared(appid, layer, role); this->app2client[appid] = client; this->clientDump(); } -- cgit 1.2.3-korg