From 16b18c596468f0ac0eef9c8df2b67786b3fb00ab Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Sat, 8 Sep 2018 16:43:22 +0900 Subject: Fix the mistake of generating new layerID Signed-off-by: Kazumasa Mitsunari --- src/wm_layer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wm_layer.cpp b/src/wm_layer.cpp index 01e8950..cd381c2 100644 --- a/src/wm_layer.cpp +++ b/src/wm_layer.cpp @@ -127,8 +127,8 @@ unsigned WMLayer::getNewLayerID(const string& role) return ret; } - auto id_found = std::find(id_list.begin(), id_list.end(), ret); - if( (ret > this->idEnd()) || (id_found != id_list.cend()) ) + size_t count = std::count(id_list.begin(), id_list.end(), ret); + if( (ret > this->idEnd()) || (count > 1)) { HMI_NOTICE("id %d is not available then generate new id", ret); ret = 0; // reset -- cgit 1.2.3-korg