ecore/ecore_x - Changed ecore_x_error_get() return type to Ecore_X_Error_Code from int

SVN revision: 71421
This commit is contained in:
ChunEon Park 2012-05-25 10:15:27 +00:00
parent 3280ada8e9
commit 1bb2daff42
5 changed files with 13 additions and 7 deletions

View File

@ -682,4 +682,8 @@
timer around, quit mainloop, then start it again expecting the timer timer around, quit mainloop, then start it again expecting the timer
to keep ticking off. also happens to be an issuw with to keep ticking off. also happens to be an issuw with
iterating the mainloop. iterating the mainloop.
2012-05-25 ChunEon Park (Hermet)
* Changed ecore_x_error_get() return type to Ecore_X_Error_Code from
int

View File

@ -1255,9 +1255,11 @@ EAPI void
ecore_x_io_error_handler_set(void (*func)(void *data), ecore_x_io_error_handler_set(void (*func)(void *data),
const void *data); const void *data);
EAPI int EAPI int
ecore_x_error_request_get(void); ecore_x_error_request_get(void);
EAPI int
ecore_x_error_code_get(void); EAPI Ecore_X_Error_Code
ecore_x_error_code_get(void);
EAPI Ecore_X_ID EAPI Ecore_X_ID
ecore_x_error_resource_id_get(void); ecore_x_error_resource_id_get(void);

View File

@ -58,7 +58,7 @@ ecore_x_error_request_get(void)
* *
* Return the error code from the last X error * Return the error code from the last X error
*/ */
EAPI int EAPI Ecore_X_Error_Code
ecore_x_error_code_get(void) ecore_x_error_code_get(void)
{ {
return _error_code; return _error_code;

View File

@ -1228,7 +1228,7 @@ static void
_ecore_x_window_manage_error(void *data __UNUSED__) _ecore_x_window_manage_error(void *data __UNUSED__)
{ {
if ((ecore_x_error_request_get() == X_ChangeWindowAttributes) && if ((ecore_x_error_request_get() == X_ChangeWindowAttributes) &&
(ecore_x_error_code_get() == BadAccess)) (ecore_x_error_code_get() == ECORE_X_ERROR_CODE_BAD_ACCESS))
_ecore_x_window_manage_failed = 1; _ecore_x_window_manage_failed = 1;
} }

View File

@ -69,7 +69,7 @@ ecore_x_error_request_get(void)
* *
* Return the error code from the last X error * Return the error code from the last X error
*/ */
EAPI int EAPI Ecore_X_Error_Code
ecore_x_error_code_get(void) ecore_x_error_code_get(void)
{ {
return _error_code; return _error_code;