aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/wm_layer.cpp4
1 files 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