ecore ecore_x_test.c: Fixed warnings.

SVN revision: 60396
This commit is contained in:
Daniel Juyung Seo 2011-06-16 15:11:30 +00:00
parent f8bf6ff656
commit 5724f5b257
1 changed files with 12 additions and 0 deletions

View File

@ -13,7 +13,11 @@
#include <string.h>
EAPI Eina_Bool
#ifdef ECORE_XTEST
ecore_x_test_fake_key_down(const char *key)
#else
ecore_x_test_fake_key_down(const char *key __UNUSED__)
#endif
{
#ifdef ECORE_XTEST
KeyCode keycode = 0;
@ -41,7 +45,11 @@ ecore_x_test_fake_key_down(const char *key)
} /* ecore_x_test_fake_key_down */
EAPI Eina_Bool
#ifdef ECORE_XTEST
ecore_x_test_fake_key_up(const char *key)
#else
ecore_x_test_fake_key_up(const char *key __UNUSED__)
#endif
{
#ifdef ECORE_XTEST
KeyCode keycode = 0;
@ -69,7 +77,11 @@ ecore_x_test_fake_key_up(const char *key)
} /* ecore_x_test_fake_key_up */
EAPI Eina_Bool
#ifdef ECORE_XTEST
ecore_x_test_fake_key_press(const char *key)
#else
ecore_x_test_fake_key_press(const char *key __UNUSED__)
#endif
{
#ifdef ECORE_XTEST
KeyCode keycode = 0;