ecore-x - remove useless extra assignments of value to itself

usless code that does nothing - not a bug though

found by PVS studio
This commit is contained in:
Carsten Haitzler 2017-07-29 11:22:54 +09:00
parent 075e150a03
commit 7620d5d957
1 changed files with 0 additions and 2 deletions

View File

@ -1004,7 +1004,6 @@ _ecore_x_event_handle_focus_in(XEvent *xevent)
e->detail = ECORE_X_EVENT_DETAIL_DETAIL_NONE;
e->time = _ecore_x_event_last_time;
_ecore_x_event_last_time = e->time;
ecore_event_add(ECORE_X_EVENT_WINDOW_FOCUS_IN, e, NULL, NULL);
}
@ -1048,7 +1047,6 @@ _ecore_x_event_handle_focus_out(XEvent *xevent)
e->detail = ECORE_X_EVENT_DETAIL_DETAIL_NONE;
e->time = _ecore_x_event_last_time;
_ecore_x_event_last_time = e->time;
ecore_event_add(ECORE_X_EVENT_WINDOW_FOCUS_OUT, e, NULL, NULL);
}