add missing client type checks

This commit is contained in:
Mike Blumenkrantz 2014-07-14 12:43:56 -04:00
parent 9a1e8df8f1
commit 0c191c0a47
1 changed files with 4 additions and 0 deletions

View File

@ -3253,6 +3253,8 @@ e_client_refocus(void)
EAPI void EAPI void
e_client_focus_set_with_pointer(E_Client *ec) e_client_focus_set_with_pointer(E_Client *ec)
{ {
E_OBJECT_CHECK(ec);
E_OBJECT_TYPE_CHECK(ec, E_CLIENT_TYPE);
/* note: this is here as it seems there are enough apps that do not even /* note: this is here as it seems there are enough apps that do not even
* expect us to emulate a look of focus but not actually set x input * expect us to emulate a look of focus but not actually set x input
* focus as we do - so simply abort any focuse set on such windows */ * focus as we do - so simply abort any focuse set on such windows */
@ -3379,6 +3381,8 @@ e_client_focused_set(E_Client *ec)
EAPI void EAPI void
e_client_activate(E_Client *ec, Eina_Bool just_do_it) e_client_activate(E_Client *ec, Eina_Bool just_do_it)
{ {
E_OBJECT_CHECK(ec);
E_OBJECT_TYPE_CHECK(ec, E_CLIENT_TYPE);
if ((e_config->focus_setting == E_FOCUS_NEW_WINDOW) || if ((e_config->focus_setting == E_FOCUS_NEW_WINDOW) ||
((ec->parent) && ((ec->parent) &&
((e_config->focus_setting == E_FOCUS_NEW_DIALOG) || ((e_config->focus_setting == E_FOCUS_NEW_DIALOG) ||