fix uninitialized problems reported by valgrind.

SVN revision: 41316
This commit is contained in:
Gustavo Sverzut Barbieri 2009-07-12 16:11:58 +00:00
parent 29c44e5234
commit 05f61cd086
1 changed files with 2 additions and 0 deletions

View File

@ -1132,6 +1132,8 @@ evas_object_hide(Evas_Object *obj)
ev.data = NULL;
ev.modifiers = &(obj->layer->evas->modifiers);
ev.locks = &(obj->layer->evas->locks);
ev.timestamp = obj->layer->evas->last_timestamp;
ev.event_flags = EVAS_EVENT_FLAG_NONE;
evas_object_event_callback_call(obj, EVAS_CALLBACK_MOUSE_OUT, &ev);
}
}