Fix the view_create_win 71/56771/3
authorSung-jae Park <nicesj.park@samsung.com>
Tue, 12 Jan 2016 12:03:16 +0000 (21:03 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Tue, 12 Jan 2016 12:06:47 +0000 (21:06 +0900)
Change-Id: I7ad977fd12f92d227417361addf95b0670b82cad

rule/project/src/view.c
rule/project/src/view.c.tccr

index 53a79b9..df3f05e 100644 (file)
@@ -26,7 +26,7 @@ void view_create(appdata_s *ad)
        }
 
        /* Create window */
-       ad->win = view_create_win();
+       ad->win = view_create_win(PACKAGE);
        if (ad->win == NULL) {
                dlog_print(DLOG_ERROR, LOG_TAG, "failed to create a window.");
                return;
@@ -217,8 +217,8 @@ Evas_Object *view_create_layout_for_part(Evas_Object *parent, char *part, char *
 }
 
 /*
- * @brief: Destroy window and free important data to finish this app
- * @param[user_data]: The object has informations for managing this app
+ * @brief: Destroy window and free important data to finish this application
+ * @param[user_data]: Structure has informations for managing this application
  */
 void view_destroy(void *user_data)
 {
index 5e03cc8..7f6ec89 100644 (file)
@@ -26,7 +26,7 @@
 |R|    }
 
 |R|    /* Create window */
-|R|    ad->win = view_create_win();
+|R|    ad->win = view_create_win(PACKAGE);
 |R|    if (ad->win == NULL) {
 |R|            dlog_print(DLOG_ERROR, LOG_TAG, "failed to create a window.");
 |R|            return;
@@ -217,8 +217,8 @@ Evas_Object *view_create_layout_for_part(Evas_Object *parent, char *part, char *
 }
 
 |R| /*
-|R|  * @brief: Destroy window and free important data to finish this app
-|R|  * @param[user_data]: The object has informations for managing this app
+|R|  * @brief: Destroy window and free important data to finish this application
+|R|  * @param[user_data]: Structure has informations for managing this application
 |R|  */
 |R| void view_destroy(void *user_data)
 |R| {