ecore-evas: Fix return value in ecore_evas_aux_hint_val_set function

Small patch to fix misleading return value when
ecore_evas_aux_hint_val_set fails. In the above code, we will return
EINA_TRUE already if the aux_hints_set works, so this return value at
the bottom of the function should be EINA_FALSE.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-06-13 12:55:01 -04:00
parent 0d5d157559
commit a5d93a4ece
1 changed files with 1 additions and 1 deletions

View File

@ -2445,7 +2445,7 @@ ecore_evas_aux_hint_val_set(Ecore_Evas *ee, const int id, const char *val)
}
}
return EINA_TRUE;
return EINA_FALSE;
}
EAPI const char *