[appcontrol] fix wrong letter
authorbg.chun <bg.chun@samsung.com>
Mon, 21 Sep 2015 09:37:36 +0000 (18:37 +0900)
committerbg.chun <bg.chun@samsung.com>
Mon, 21 Sep 2015 10:05:14 +0000 (19:05 +0900)
Change-Id: I3866cf014269481db501ee0aeca181cfaab3f8ff
Signed-off-by: bg.chun <bg.chun@samsung.com>
org.tizen.guides/html/native/app/common_appcontrol_n.htm

index 7633ede..b4547ed 100755 (executable)
@@ -169,7 +169,7 @@ app_control_destroy(app_control);
                                <th>Note</th>
                        </tr>
                        <tr>
-                               <td><span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_CALENDAR_ALLDAY</span></td>
+                               <td><span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_CALENDAR_ALL_DAY</span></td>
                                <td>The string to indicate if an event applies to all day. Available values are <span style="font-family: Courier New,Courier,monospace">true</span> or <span style="font-family: Courier New,Courier,monospace">false</span>. This key must be passed as a string.</td>
                                <td rowspan="5" style="vertical-align:middle">This key is optional.</td>
                        </tr>
@@ -248,7 +248,7 @@ app_control_send_launch_request(service, NULL, NULL);
                                <td>This key is mandatory.</td>
                        </tr>
                        <tr>
-                               <td><span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_CALENDAR_ALLDAY</span></td>
+                               <td><span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_CALENDAR_ALL_DAY</span></td>
                                <td>The string to indicate if an event applies to all day. Available values are <span style="font-family: Courier New,Courier,monospace">true</span> or <span style="font-family: Courier New,Courier,monospace">false</span>. This key must be passed as a string.</td>
                                <td rowspan="5" style="vertical-align:middle">This key is optional.</td>
                        </tr>
@@ -546,7 +546,7 @@ app_control_h service;
 app_control_create(&service);
 
 app_control_set_operation(service, APP_CONTROL_OPERATION_CREATE_CONTENT);
-app_control_set_mime(service, “image/*”);
+app_control_set_mime(service, "image/*");
 app_control_send_launch_request(service, NULL, NULL);
 
 app_control_destory(service);
@@ -981,7 +981,7 @@ launchContactPick(const char *selectionMode, const char *resultType,
                        </tr>
                        <tr>
                                <td><span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_ID</span></td>
-                               <td>The DB record ID of the person (id in _contacts_person view) when <span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_TYPE</span> is set <span style="font-family: Courier New,Courier,monospace">to <span style="font-family: Courier New,Courier,monospace">person</span>.
+                               <td>The DB record ID of the person (id in _contacts_person view) when <span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_TYPE</span> is set to <span style="font-family: Courier New,Courier,monospace">person</span>.
                                The DB record ID of the my profile (id in _contacts_my_profile view) when <span style="font-family: Courier New,Courier,monospace">APP_CONTROL_DATA_TYPE</span> is set to <span style="font-family: Courier New,Courier,monospace">my_profile</span>. This key MUST be passed as a string.</p></td>
                                <td rowspan="2" style="vertical-align:middle">This key is mandatory.</td>
                        </tr>
@@ -1545,7 +1545,7 @@ pick_location_operation(void)
    
 &nbsp;&nbsp;&nbsp;app_control_set_operation(service, APP_CONTROL_OPERATION_PICK);
 &nbsp;&nbsp;&nbsp;app_control_set_uri(service, &quot;geo:0,0?q=”Eiffel Tower&quot;);
-&nbsp;&nbsp;&nbsp;app_control_set_extra_data(service, APP_CONTROL_DATA_TYPE, &quot;poi&quot;);
+&nbsp;&nbsp;&nbsp;app_control_add_extra_data(service, APP_CONTROL_DATA_TYPE, &quot;poi&quot;);
 
 &nbsp;&nbsp;&nbsp;app_control_send_launch_request(service, pick_reply_cb, NULL);
 &nbsp;&nbsp;&nbsp;app_control_destroy(service);