From: Junghoon, Park Date: Wed, 29 Jul 2015 02:05:27 +0000 (+0900) Subject: modify description because of changing enum type X-Git-Tag: tizen_3.0/TD_SYNC/20161201~664^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f021f4a23aa3d2fc9cdd4b479d7681fc338636f7;p=sdk%2Fonline-doc.git modify description because of changing enum type Change-Id: Ibfe1d58a51403b1718c9e6d3644fae3c50a42b3c Signed-off-by: Junghoon, Park --- diff --git a/org.tizen.tutorials/html/native/app_framework/widget_tutorial_n.htm b/org.tizen.tutorials/html/native/app_framework/widget_tutorial_n.htm index 1d2ed1f..973fde0 100644 --- a/org.tizen.tutorials/html/native/app_framework/widget_tutorial_n.htm +++ b/org.tizen.tutorials/html/native/app_framework/widget_tutorial_n.htm @@ -200,11 +200,11 @@ int widget_instance_create(widget_context_h context, bundle *content, int w, int
  • This callback is triggered when the widget instance is destroyed. -

    Release all widget resources. If the reason for the termination is not WIDGET_APP_DESTROY_TYPE_DEFAULT, store the current status with the incoming bundle.

    +

    Release all widget resources. If the reason for the termination is not WIDGET_APP_DESTROY_TYPE_PERMANENT, store the current status with the incoming bundle.

     int widget_instance_destroy(widget_context_h context, widget_app_destroy_type_e reason, bundle *content, void *user_data)
     {
    -   if (reason != WIDGET_APP_DESTROY_TYPE_DEFAULT) 
    +   if (reason != WIDGET_APP_DESTROY_TYPE_PERMANENT) 
        {
           // Save the current status at the bundle object
        }