summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunghyun Kim <jh1114.kim@samsung.com>2012-09-04 17:40:25 +0900
committerJunghyun Kim <jh1114.kim@samsung.com>2012-09-04 17:40:25 +0900
commit012eaf8203024d43571f27269578cfdf138fdaa0 (patch)
tree2af4b669a743ee6d4329975ba6fc5d5a7a7f801a
parent64f7f99464183341a2430205eb45be6e0e620b3c (diff)
downloadsmartsearch-012eaf8203024d43571f27269578cfdf138fdaa0.tar.gz
smartsearch-012eaf8203024d43571f27269578cfdf138fdaa0.tar.bz2
smartsearch-012eaf8203024d43571f27269578cfdf138fdaa0.zip
Change operation string
-rwxr-xr-xdata/org.tizen.smartsearch.xml2
-rwxr-xr-xsrc/smartsearch.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/org.tizen.smartsearch.xml b/data/org.tizen.smartsearch.xml
index 051377a..5924ba0 100755
--- a/data/org.tizen.smartsearch.xml
+++ b/data/org.tizen.smartsearch.xml
@@ -22,7 +22,7 @@
<label xml:lang="fr-fr">Rechercher</label>
<label xml:lang="ko-kr">검색</label>
<application-service>
- <operation name="http://tizen.org/appsvc/operation/search"/>
+ <operation name="http://tizen.org/appcontrol/operation/search"/>
</application-service>
</ui-application>
</manifest>
diff --git a/src/smartsearch.cpp b/src/smartsearch.cpp
index b751625..ae22250 100755
--- a/src/smartsearch.cpp
+++ b/src/smartsearch.cpp
@@ -620,7 +620,7 @@ static void __search_app_service(service_h service, void *data)
SEARCH_DEBUG_LOG("SERVICE OPERATION TYPE : %s", operation);
if (SEARCH_STRCMP(operation, SERVICE_OPERATION_SEARCH) == 0) {
- ret = service_get_extra_data(service, "http://tizen.org/appsvc/data/keyword", &query);
+ ret = service_get_extra_data(service, "http://tizen.org/appcontrol/data/keyword", &query);
if(ret != 0) {
SEARCH_DEBUG_WARNING("Fail to Get Keyword data!");