Remove unused variable 04/137704/1
authorjunkyu han <junkyu.han@samsung.com>
Fri, 7 Jul 2017 06:49:59 +0000 (15:49 +0900)
committerjunkyu han <junkyu.han@samsung.com>
Fri, 7 Jul 2017 06:49:59 +0000 (15:49 +0900)
Change-Id: I5111107565c8f2ba5fda61ecb6428d0946094ef3

src/view.c

index 9fc59ef..e27f569 100755 (executable)
@@ -525,8 +525,7 @@ Evas_Object *add_layout(Evas_Object *parent, const char *file, const char *group
 
 void _connect_to_wm(Evas_Object *win)
 {
-       _D("Mack connection with window manager");
-
+       _D("Make connection with window manager");
        tzsh_window tz_win;
 
        view_info.tzsh = tzsh_create(TZSH_TOOLKIT_TYPE_EFL);
@@ -539,10 +538,16 @@ void _connect_to_wm(Evas_Object *win)
                _E("Failed to get Tizen window manager");
        }
 
-       //view_info.volume_service = tzsh_volume_service_create(view_info.tzsh, tz_win);
+       /*
+        * Tizen SDK do not support tzsh yet
+        * If you want to build with ABS you should Block this code
+        */
+#if 0
+       view_info.volume_service = tzsh_volume_service_create(view_info.tzsh, tz_win);
        if (!view_info.volume_service) {
                _E("Failed to get volume service");
        }
+#endif
 }
 
 static void _down_for_hide(void *data, Evas_Object *obj, const char* emission, const char* source)
@@ -645,10 +650,8 @@ Evas_Object *volume_view_window_create(void)
 {
        Evas_Object *win = add_volume_window(PACKAGE);
        retv_if(!win, NULL);
-       _D("window is [%p]", win);
 
        view_info.win = win;
-       _D("view_info.win is [%p]", view_info.win);
 
        evas_object_show(win);