remove snippet string, type in NOT-supported view 09/78409/3 accepted/tizen/common/20160824.154539 submit/tizen/20160824.044025
authorJeesun Kim <iamjs.kim@samsung.com>
Tue, 5 Jul 2016 10:44:50 +0000 (19:44 +0900)
committerJongkyu Koo <jk.koo@samsung.com>
Fri, 19 Aug 2016 06:44:54 +0000 (23:44 -0700)
Change-Id: I3b32ad40dc1cc7d4deedbee06aa180f354ae498c

common/ctsvc_view.c
include/contacts_views.h

index 2fc9634..ec2549b 100644 (file)
@@ -265,9 +265,7 @@ EXPORT_API const _contacts_group_relation_property_ids _contacts_group_relation
        .id                     = CTSVC_PROPERTY_GROUP_RELATION_ID,
        .group_id       = CTSVC_PROPERTY_GROUP_RELATION_GROUP_ID,
        .contact_id     = CTSVC_PROPERTY_GROUP_RELATION_CONTACT_ID,
-       .name           = CTSVC_PROPERTY_GROUP_RELATION_GROUP_NAME,
-       .snippet_type                   = CTSVC_PROPERTY_PERSON_SNIPPET_TYPE,
-       .snippet_string                 = CTSVC_PROPERTY_PERSON_SNIPPET_STRING
+       .name           = CTSVC_PROPERTY_GROUP_RELATION_GROUP_NAME
 };
 
 EXPORT_API const _contacts_relationship_property_ids _contacts_relationship = {
index 57b709d..43fbf88 100644 (file)
@@ -623,8 +623,6 @@ _CONTACTS_END_VIEW(_contacts_event)
  * <tr><td>integer</td><td> group_id </td><td>read, write once</td><td> DB record ID of the group </td></tr>
  * <tr><td>integer</td><td> contact_id </td><td>read, write once</td><td> DB record ID of the contact </td></tr>
  * <tr><td>string</td><td> name </td><td>read only</td><td> Group name </td></tr>
- * <tr><td>integer</td><td> snippet_type </td><td>read only</td><td> kerword matched data type, refer to they @ref contacts_data_type_e (Since 3.0) </td></tr>
- * <tr><td>string</td><td> snippet_string </td><td>read only</td><td> keyword matched data string (Since 3.0) </td></tr>
  * </table>
  */
 _CONTACTS_BEGIN_VIEW()
@@ -632,8 +630,6 @@ _CONTACTS_BEGIN_VIEW()
        _CONTACTS_PROPERTY_INT(group_id)          /* read, write once */
        _CONTACTS_PROPERTY_INT(contact_id)        /* read, write once */
        _CONTACTS_PROPERTY_STR(name)              /* read only */
-       _CONTACTS_PROPERTY_INT(snippet_type)      /* read only (Since 3.0) */
-       _CONTACTS_PROPERTY_STR(snippet_string)    /* read only (Since 3.0) */
 _CONTACTS_END_VIEW(_contacts_group_relation)
 
 /**