From: Lukasz Wlazly Date: Mon, 11 Jun 2018 07:25:36 +0000 (+0200) Subject: Fix invalid plug ID X-Git-Tag: accepted/tizen/unified/20180614.150842~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F40%2F181240%2F2;p=platform%2Fcore%2Fappfw%2Fscreen-connector.git Fix invalid plug ID Invalid version of this property was causing errors during communication over DBus. Change-Id: I1cabe34842a940760e89939618d80888acceb284 --- diff --git a/screen_connector_remote_surface_evas/image.cc b/screen_connector_remote_surface_evas/image.cc index 098b0a8..df4558a 100644 --- a/screen_connector_remote_surface_evas/image.cc +++ b/screen_connector_remote_surface_evas/image.cc @@ -53,7 +53,7 @@ Image::Image(Evas_Object* raw, IEventListener* listener, /* Set data to use in accessibility */ std::string plugId = instId + ":"; - plugId += pid; + plugId += std::to_string(pid); evas_object_data_set(GetRaw(), "___PLUGID", strdup(plugId.c_str())); evas_object_data_set(GetRaw(), SC_TOOLKIT_HANDLE_TAG, tag); }