* ecore_evas_x: Remove now useless function.
authorcedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 16 Mar 2009 16:40:00 +0000 (16:40 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 16 Mar 2009 16:40:00 +0000 (16:40 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@39506 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_evas/ecore_evas_x.c

index 3b12e54..93deafb 100644 (file)
@@ -316,26 +316,6 @@ _ecore_evas_x_render(Ecore_Evas *ee)
    return rend;
 }
 
-static char *
-_ecore_evas_x_winid_str_get(Ecore_X_Window win)
-{
-   const char *vals = "qWeRtYuIoP5-$&<~";
-   static char id[9];
-   unsigned int val;
-
-   val = (unsigned int)win;
-   id[0] = vals[(val >> 28) & 0xf];
-   id[1] = vals[(val >> 24) & 0xf];
-   id[2] = vals[(val >> 20) & 0xf];
-   id[3] = vals[(val >> 16) & 0xf];
-   id[4] = vals[(val >> 12) & 0xf];
-   id[5] = vals[(val >>  8) & 0xf];
-   id[6] = vals[(val >>  4) & 0xf];
-   id[7] = vals[(val      ) & 0xf];
-   id[8] = 0;
-   return id;
-}
-
 static void
 _ecore_evas_x_resize_shape(Ecore_Evas *ee)
 {
@@ -1819,16 +1799,6 @@ _ecore_evas_x_alpha_set(Ecore_Evas *ee, int alpha)
 }
 #endif /* BUILD_ECORE_EVAS_X11 */
 
-static void *
-_ecore_evas_x_window_get(const Ecore_Evas *ee)
-{
-#ifdef BUILD_ECORE_EVAS_X11
-  return (void *) (long)ee->prop.window;
-#else
-   return 0;
-#endif /* BUILD_ECORE_EVAS_X11 */
-}
-
 #ifdef BUILD_ECORE_EVAS_X11
 static void
 _ecore_evas_x_show(Ecore_Evas *ee)