Fix build error : Warning C++1z
[apps/agl-service-windowmanager.git] / src / wm_client.cpp
index 24e2247..72517bd 100644 (file)
@@ -84,7 +84,7 @@ unsigned WMClient::surfaceID(const string &role) const
 {
     if (0 == this->role2surface.count(role))
     {
-        HMI_WARNING("wm", "invalid role");
+        HMI_NOTICE("wm", "invalid role %s : appID : %s", role.c_str(), this->id.c_str());
         return INVALID_SURFACE_ID;
     }
     return this->role2surface.at(role);
@@ -92,10 +92,11 @@ unsigned WMClient::surfaceID(const string &role) const
 
 std::string WMClient::role(unsigned surface) const
 {
-    for(const auto& [key, value] : this->role2surface)
+    for(const auto& x : this->role2surface)
     {
-        if(value == surface){
-            return key;
+        if(x.second == surface)
+        {
+            return x.first;
         }
     }
     return std::string("");
@@ -129,6 +130,8 @@ bool WMClient::removeSurfaceIfExist(unsigned surface)
     {
         if (surface == x.second)
         {
+            HMI_INFO("wm", "Remove surface from client %s: role %s, surface: %d",
+                                this->id.c_str(), x.first.c_str(), x.second);
             this->role2surface.erase(x.first);
             ret = true;
             break;
@@ -148,6 +151,7 @@ bool WMClient::removeRole(const string &role)
     return ret;
 }
 
+#ifndef GTEST_ENABLED
 bool WMClient::subscribe(afb_req req, const string &evname)
 {
     if(evname != kKeyError){
@@ -180,6 +184,7 @@ void WMClient::emitError(WM_CLIENT_ERROR_EVENT ev)
         HMI_DEBUG("wm", "afb_event_push failed: %m");
     }
 }
+#endif
 
 void WMClient::dumpInfo()
 {