summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorJiwoong Im <jiwoong.im@samsung.com>2016-06-16 18:43:51 +0900
committerJiwoong Im <jiwoong.im@samsung.com>2016-06-16 19:12:29 +0900
commit64ca55d9ed58e80c353b588ef6ec2c03e56f7d7e (patch)
treefd17475a938127537752f808a0e50ebd2cd42291 /client
parent0c2ea19d230c7e1447ce841b916c2eebaa43ed33 (diff)
downloadui-gadget-1-64ca55d9ed58e80c353b588ef6ec2c03e56f7d7e.tar.gz
ui-gadget-1-64ca55d9ed58e80c353b588ef6ec2c03e56f7d7e.tar.bz2
ui-gadget-1-64ca55d9ed58e80c353b588ef6ec2c03e56f7d7e.zip
fix abi issue
Change-Id: Idc9ca564c61f2f6278c93e950d3163c83391274c Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
Diffstat (limited to 'client')
-rw-r--r--client/ug-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/ug-client.c b/client/ug-client.c
index 6b12695..99a5754 100644
--- a/client/ug-client.c
+++ b/client/ug-client.c
@@ -164,7 +164,7 @@ void _ug_client_result_cb(ui_gadget_h ug, app_control_h reply, void *priv)
if (!ug || !priv)
return;
- ret = app_control_get_extra_data(reply, UG_SERVICE_DATA_RESULT, &value);
+ ret = app_control_get_extra_data(reply, UG_APP_CONTROL_DATA_RESULT, &value);
if ((ret == APP_CONTROL_ERROR_NONE) && (value)) {
result = atoi(value);
LOGD("reply result is %d", result);