ecore-evas-x: Fix issue of wrong interface function pointer being set

Summary: This fixes Coverity CID1267461 where the pointer to the
interface shape_input_reset function was being assigned multiple
times. It looks like this is just a copy/paste error.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-04-20 12:56:46 -04:00
parent d5005d0efc
commit c66275c99b
1 changed files with 1 additions and 1 deletions

View File

@ -5011,7 +5011,7 @@ _ecore_evas_x_interface_x11_new(void)
iface->shape_input_rectangle_subtract = _ecore_evas_x11_shape_input_rectangle_subtract;
iface->shape_input_empty = _ecore_evas_x11_shape_input_empty;
iface->shape_input_reset = _ecore_evas_x11_shape_input_reset;
iface->shape_input_reset = _ecore_evas_x11_shape_input_apply;
iface->shape_input_apply = _ecore_evas_x11_shape_input_apply;
return iface;
}