From: Jiwoong Im Date: Tue, 29 Dec 2015 07:57:19 +0000 (+0900) Subject: Correct application tutorial X-Git-Tag: tizen_3.0/TD_SYNC/20161201~249 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3fc67ab536d6acd998a238e06d6e4efe9dd5e167;p=sdk%2Fonline-doc.git Correct application tutorial Change-Id: I9f9c337769ef5f8ec03b2decb00d167f7c193085 Signed-off-by: Jiwoong Im --- diff --git a/org.tizen.tutorials/html/native/app_framework/alarm_tutorial_n.htm b/org.tizen.tutorials/html/native/app_framework/alarm_tutorial_n.htm index 938c162..9d367d7 100644 --- a/org.tizen.tutorials/html/native/app_framework/alarm_tutorial_n.htm +++ b/org.tizen.tutorials/html/native/app_framework/alarm_tutorial_n.htm @@ -64,9 +64,8 @@

Initializing the Alarm Functionality

To initialize the alarm functionality:

-
  1. To use the functions and data types of the Alarm API (in mobile and wearable applications), include the <app.h> and <app_alarm.h> header files in your application: +
    1. To use the functions and data types of the Alarm API (in mobile and wearable applications), include the <app_alarm.h> header files in your application:
      -#include <app.h>
       #include <app_alarm.h>
       
    2. diff --git a/org.tizen.tutorials/html/native/app_framework/appcontrol_tutorial_n.htm b/org.tizen.tutorials/html/native/app_framework/appcontrol_tutorial_n.htm index 2796855..f656359 100644 --- a/org.tizen.tutorials/html/native/app_framework/appcontrol_tutorial_n.htm +++ b/org.tizen.tutorials/html/native/app_framework/appcontrol_tutorial_n.htm @@ -55,9 +55,9 @@

      To run a specific application control with some preconfigured parameters:

        -
      1. To use the functions and data types of the App Control API (in mobile and wearable applications), include the <app.h> header file in your application:

        +
      2. To use the functions and data types of the App Control API (in mobile and wearable applications), include the <app_control.h> header file in your application:

        -#include <app.h>
        +#include <app_control.h>
         
      3. diff --git a/org.tizen.tutorials/html/native/app_framework/preference_tutorial_n.htm b/org.tizen.tutorials/html/native/app_framework/preference_tutorial_n.htm index 10911ad..e3c3784 100644 --- a/org.tizen.tutorials/html/native/app_framework/preference_tutorial_n.htm +++ b/org.tizen.tutorials/html/native/app_framework/preference_tutorial_n.htm @@ -51,7 +51,7 @@

        Managing Application Preferences

        You can set and get application preference data. Any stored preference data can also be shared among the applications in the same package.

        -

        To use the functions and data types of the Preference API (in mobile and wearable applications), include the <app.h> header file in your application:

        +

        To use the functions and data types of the Preference API (in mobile and wearable applications), include the <app_preference.h> header file in your application:

         #include <app_preference.h>