summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSung-jae Park <nicesj.park@samsung.com>2012-07-19 16:29:32 +0900
committerSung-jae Park <nicesj.park@samsung.com>2012-07-19 17:09:14 +0900
commitd33071d6ad1d1fed8b995850c88f5e1887bc7d19 (patch)
tree9c80fcc410e41645862acbfd485695a91753c28f /test
parentb40603d0a50c778dd74a7a5a295ea17b7a63c1a8 (diff)
downloadshortcut-d33071d6ad1d1fed8b995850c88f5e1887bc7d19.tar.gz
shortcut-d33071d6ad1d1fed8b995850c88f5e1887bc7d19.tar.bz2
shortcut-d33071d6ad1d1fed8b995850c88f5e1887bc7d19.zip
Update shortcut list up API
XML spec is updated Fix the crash bug when the application doesn't set the result check cb for add to home shortcut(or livebox) Change-Id: If47c52b721cc80cfd35379a486a1f8d52dbf2776
Diffstat (limited to 'test')
-rw-r--r--test/shortcut.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/shortcut.c b/test/shortcut.c
index b7f9a3e..ed10607 100644
--- a/test/shortcut.c
+++ b/test/shortcut.c
@@ -18,9 +18,9 @@
#include <Elementary.h>
#include <shortcut.h>
-static int shortcut_list_cb(const char *pkgname, const char *icon, const char *name, const char *param, void *data)
+static int shortcut_list_cb(const char *appid, const char *icon, const char *name, const char *extra_key, const char *extra_data, void *data)
{
- printf("pkgname[%s] icon[%s], name[%s] param[%s]\n", pkgname, icon, name, param);
+ printf("appid[%s] icon[%s], name[%s] extra_key[%s], extra_ata[%s]\n", appid, icon, name, extra_key, extra_data);
return 0;
}