Add return value.

SVN revision: 33460
This commit is contained in:
Sebastian Dransfeld 2008-01-12 08:00:13 +00:00
parent 7f35e9ca85
commit 8067490208
1 changed files with 2 additions and 2 deletions

View File

@ -1463,7 +1463,7 @@ _pager_cb_event_border_focus_in(void *data, int type, void *event)
}
pp = _pager_popup_find(zone);
if (!pp) return;
if (!pp) return 1;
for (l = pp->pager->desks; l; l = l->next)
{
Pager_Desk *pd;
@ -1515,7 +1515,7 @@ _pager_cb_event_border_focus_out(void *data, int type, void *event)
}
pp = _pager_popup_find(zone);
if (!pp) return;
if (!pp) return 1;
for (l = pp->pager->desks; l; l = l->next)
{
Pager_Desk *pd;