summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRadoslaw Czerski <r.czerski@samsung.com>2016-03-15 17:30:47 +0100
committerRadoslaw Czerski <r.czerski@samsung.com>2016-03-15 17:30:47 +0100
commit21afa34183581b6729a101aab7cffb9a9ece01f4 (patch)
treedfffbdf69534dbde7241fed5835a83932d418c75 /src
parent9e1d98d3d09a4e430651067ae755ca350e71c251 (diff)
downloadshare-panel-21afa34183581b6729a101aab7cffb9a9ece01f4.tar.gz
share-panel-21afa34183581b6729a101aab7cffb9a9ece01f4.tar.bz2
share-panel-21afa34183581b6729a101aab7cffb9a9ece01f4.zip
Not needed defines removed.
Change-Id: I130e1e5b749f7e2027da958af16a03c614b4847c Signed-off-by: Radoslaw Czerski <r.czerski@samsung.com>
Diffstat (limited to 'src')
-rw-r--r--src/list.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/list.c b/src/list.c
index ae53102..d9d5deb 100644
--- a/src/list.c
+++ b/src/list.c
@@ -137,7 +137,7 @@ static void __intersect_match_list_with_mime(Eina_List **matchlist, const char *
bool exist;
app_control_create(&control);
- app_control_set_operation(control, TIZEN_MULTI_SHARE);
+ app_control_set_operation(control, APP_CONTROL_OPERATION_MULTI_SHARE);
app_control_set_mime(control, mime);
app_control_set_uri(control, uri);
app_control_foreach_app_matched(control, __app_control_file_matched_cb, &sublist);
@@ -356,11 +356,11 @@ Eina_List *_list_create(share_panel_h share_panel)
__trim_uri(share_panel->control);
- if (!strcmp(operation_type, TIZEN_SHARE)
- || !strcmp(operation_type, TIZEN_SHARE_TEXT)) {
+ if (!strcmp(operation_type, APP_CONTROL_OPERATION_SHARE)
+ || !strcmp(operation_type, APP_CONTROL_OPERATION_SHARE_TEXT)) {
_D("single share operation");
__create_single_share_list(share_panel->control, &matchlist);
- } else if (!strcmp(operation_type, TIZEN_MULTI_SHARE)) {
+ } else if (!strcmp(operation_type, APP_CONTROL_OPERATION_MULTI_SHARE)) {
_D("multi share operation");
__create_multi_share_list(share_panel->control, &matchlist);
} else {