Revert. Remove INVALID enum option

SVN revision: 53926
This commit is contained in:
Tiago Rezende Campos Falcao 2010-10-27 17:01:58 +00:00
parent 51856aac90
commit 3a6369174d
2 changed files with 1 additions and 2 deletions

View File

@ -489,7 +489,6 @@ extern "C" {
*/
typedef enum _Elm_Bg_Option
{
ELM_BG_OPTION_INVALID = -1,
ELM_BG_OPTION_CENTER,
ELM_BG_OPTION_SCALE,
ELM_BG_OPTION_STRETCH,

View File

@ -250,7 +250,7 @@ elm_bg_option_set(Evas_Object *obj, Elm_Bg_Option option)
EAPI Elm_Bg_Option
elm_bg_option_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) ELM_BG_OPTION_INVALID;
ELM_CHECK_WIDTYPE(obj, widtype) 0;
Widget_Data *wd;
wd = elm_widget_data_get(obj);