Correct application tutorial
authorJiwoong Im <jiwoong.im@samsung.com>
Tue, 29 Dec 2015 07:57:19 +0000 (16:57 +0900)
committerJiwoong Im <jiwoong.im@samsung.com>
Tue, 29 Dec 2015 07:57:19 +0000 (16:57 +0900)
Change-Id: I9f9c337769ef5f8ec03b2decb00d167f7c193085
Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
org.tizen.tutorials/html/native/app_framework/alarm_tutorial_n.htm
org.tizen.tutorials/html/native/app_framework/appcontrol_tutorial_n.htm
org.tizen.tutorials/html/native/app_framework/preference_tutorial_n.htm

index 938c162..9d367d7 100644 (file)
@@ -64,9 +64,8 @@
 <h2 id="init" name="init">Initializing the Alarm Functionality</h2>
 
 <p>To initialize the alarm functionality:</p>
-<ol><li>To use the functions and data types of the Alarm API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__ALARM__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__ALARM__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app.h&gt;</span> and <span style="font-family: Courier New,Courier,monospace">&lt;app_alarm.h&gt;</span> header files in your application:
+<ol><li>To use the functions and data types of the Alarm API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__ALARM__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__ALARM__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_alarm.h&gt;</span> header files in your application:
 <pre class="prettyprint">
-#include &lt;app.h&gt;
 #include &lt;app_alarm.h&gt;
 </pre></li>
 
index 2796855..f656359 100644 (file)
@@ -55,9 +55,9 @@
 <p>To run a specific application control with some preconfigured parameters:</p>
 
 <ol>
-<li><p>To use the functions and data types of the App Control API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__APP__CONTROL__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__APP__CONTROL__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app.h&gt;</span> header file in your application:</p>
+<li><p>To use the functions and data types of the App Control API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__APP__CONTROL__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__APP__CONTROL__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_control.h&gt;</span> header file in your application:</p>
 <pre class="prettyprint">
-#include &lt;app.h&gt;
+#include &lt;app_control.h&gt;
 </pre>
 </li>
 
index 10911ad..e3c3784 100644 (file)
@@ -51,7 +51,7 @@
  <h2 id="manage_pref" name="manage_pref">Managing Application Preferences</h2>
 
 <p>You can set and get application preference data. Any stored preference data can also be shared among the applications in the same package.</p>
-<p>To use the functions and data types of the Preference API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__PREFERENCE__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__PREFERENCE__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app.h&gt;</span> header file in your application:</p>
+<p>To use the functions and data types of the Preference API (in <a href="../../../../org.tizen.native.mobile.apireference/group__CAPI__PREFERENCE__MODULE.html">mobile</a> and <a href="../../../../org.tizen.native.wearable.apireference/group__CAPI__PREFERENCE__MODULE.html">wearable</a> applications), include the <span style="font-family: Courier New,Courier,monospace">&lt;app_preference.h&gt;</span> header file in your application:</p>
 <pre class="prettyprint">
 #include &lt;app_preference.h&gt;
 </pre>