Fix sign warning.

SVN revision: 37216
This commit is contained in:
Sebastian Dransfeld 2008-10-27 09:49:37 +00:00
parent 97b46f898b
commit 381dc201ad
2 changed files with 2 additions and 2 deletions

View File

@ -1517,7 +1517,7 @@ EAPI void ecore_x_netwm_desktop_request_send(Ecore_X_Window win,
EAPI void ecore_x_e_init(void);
EAPI void ecore_x_e_frame_size_set(Ecore_X_Window win, int fl, int fr, int ft, int fb);
EAPI void ecore_x_e_virtual_keyboard_set(Ecore_X_Window win, int is_keyboard);
EAPI void ecore_x_e_virtual_keyboard_set(Ecore_X_Window win, unsigned int is_keyboard);
EAPI int ecore_x_e_virtual_keyboard_get(Ecore_X_Window win);
EAPI void ecore_x_e_virtual_keyboard_state_set(Ecore_X_Window win, Ecore_X_Virtual_Keyboard_State state);
EAPI Ecore_X_Virtual_Keyboard_State ecore_x_e_virtual_keyboard_state_get(Ecore_X_Window win);

View File

@ -28,7 +28,7 @@ ecore_x_e_frame_size_set(Ecore_X_Window win, int fl, int fr, int ft, int fb)
}
EAPI void
ecore_x_e_virtual_keyboard_set(Ecore_X_Window win, int is_keyboard)
ecore_x_e_virtual_keyboard_set(Ecore_X_Window win, unsigned int is_keyboard)
{
ecore_x_window_prop_card32_set(win, ECORE_X_ATOM_E_VIRTUAL_KEYBOARD,
&is_keyboard, 1);