summaryrefslogtreecommitdiff
path: root/screen_connector_remote_surface_evas
diff options
context:
space:
mode:
authorLukasz Wlazly <l.wlazly@partner.samsung.com>2018-06-11 09:25:36 +0200
committerLukasz Wlazly <l.wlazly@partner.samsung.com>2018-06-11 07:38:37 +0000
commita2762c7737fbb1062e2bd80ab4ebf1f38589878a (patch)
treee4908b6ea9f056b1b89ec9ed8c6c0ab901880b4d /screen_connector_remote_surface_evas
parent4e4cdea930a08f8b7079c8cab520830d8137df26 (diff)
downloadscreen-connector-a2762c7737fbb1062e2bd80ab4ebf1f38589878a.tar.gz
screen-connector-a2762c7737fbb1062e2bd80ab4ebf1f38589878a.tar.bz2
screen-connector-a2762c7737fbb1062e2bd80ab4ebf1f38589878a.zip
Fix invalid plug ID
Invalid version of this property was causing errors during communication over DBus. Change-Id: I1cabe34842a940760e89939618d80888acceb284
Diffstat (limited to 'screen_connector_remote_surface_evas')
-rw-r--r--screen_connector_remote_surface_evas/image.cc2
1 files changed, 1 insertions, 1 deletions
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);
}