[3.0] Set AppID for creating wayland Window 36/80636/2
authorsuhyung Eom <suhyung.eom@samsung.com>
Tue, 19 Jul 2016 07:54:01 +0000 (16:54 +0900)
committersu hyung Eom <suhyung.eom@samsung.com>
Tue, 19 Jul 2016 08:03:38 +0000 (01:03 -0700)
Signed-off-by: suhyung Eom <suhyung.eom@samsung.com>
Change-Id: I6612f931deed351d8aea7dcd50ddc1fbc9a1a283

adaptors/ecore/wayland/window-render-surface-ecore-wl.cpp

index a093174..6eeb6a7 100644 (file)
@@ -21,6 +21,7 @@
 // EXTERNAL INCLUDES
 #include <dali/integration-api/gl-abstraction.h>
 #include <dali/integration-api/debug.h>
+#include <app.h>
 
 // INTERNAL INCLUDES
 #include <wl-types.h>
@@ -260,8 +261,9 @@ void WindowRenderSurface::CreateWlRenderable()
   {
       DALI_ASSERT_ALWAYS(0 && "Failed to create X window");
   }
-
-  //FIXME
+  char *app_id = NULL;
+  app_get_id(&app_id);
+  ecore_wl_window_class_name_set(mWlWindow, app_id);
 }
 
 void WindowRenderSurface::UseExistingRenderable( unsigned int surfaceId )