yakov pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=2e7e284dae053e552c49f77fd42b4a701737b488
commit 2e7e284dae053e552c49f77fd42b4a701737b488 Author: Yakov Goldberg <[email protected]> Date: Thu Feb 20 09:49:23 2014 +0200 widget: remove OP_ID ELM_WIDGET_SUB_ID_DISPLAY_MODE_GET elm_widget_display_mode_get() was removed in 2aca940f040df01364301fe7b024be1f6d89a9d6. So OP_ID is not needed. --- src/lib/elm_widget.c | 1 - src/lib/elm_widget.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c index 7558d9c..5f52f17 100644 --- a/src/lib/elm_widget.c +++ b/src/lib/elm_widget.c @@ -6804,7 +6804,6 @@ static const Eo_Op_Description op_desc[] = { EO_OP_DESCRIPTION(ELM_WIDGET_SUB_ID_PARENT_HIGHLIGHT_SET, "Set highlighted value from itself to top parent object."), EO_OP_DESCRIPTION(ELM_WIDGET_SUB_ID_DISPLAY_MODE_SET, "Sets the widget and child widget's Evas_Display_Mode."), - EO_OP_DESCRIPTION(ELM_WIDGET_SUB_ID_DISPLAY_MODE_GET, "Returns the widget's Evas_Display_Mode"), EO_OP_DESCRIPTION(ELM_WIDGET_SUB_ID_TREE_UNFOCUSABLE_SET, "Sets the widget object and its children to be unfocusable"), EO_OP_DESCRIPTION(ELM_WIDGET_SUB_ID_TREE_UNFOCUSABLE_GET, "Returns true, if the object sub-tree is unfocusable"), diff --git a/src/lib/elm_widget.h b/src/lib/elm_widget.h index 2e39097..35e96e6 100644 --- a/src/lib/elm_widget.h +++ b/src/lib/elm_widget.h @@ -1268,7 +1268,6 @@ enum ELM_WIDGET_SUB_ID_PARENT_HIGHLIGHT_SET, ELM_WIDGET_SUB_ID_DISPLAY_MODE_SET, - ELM_WIDGET_SUB_ID_DISPLAY_MODE_GET, ELM_WIDGET_SUB_ID_TREE_UNFOCUSABLE_SET, ELM_WIDGET_SUB_ID_TREE_UNFOCUSABLE_GET, --
