* ecore_evas_x: Remove now useless function.

SVN revision: 39506
This commit is contained in:
Cedric BAIL 2009-03-16 16:40:00 +00:00
parent 57e8d73fba
commit 8f9b260382
1 changed files with 0 additions and 30 deletions

View 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)