Make it clear in documentation that these methods are not implemented.

Even so return a more meaningful value - 0 is not a member of the Enum it returns.
This commit is contained in:
Andy Williams 2014-12-29 16:54:50 +00:00
parent 694c77826b
commit ed7b41ce53
2 changed files with 6 additions and 3 deletions

View File

@ -1429,7 +1429,7 @@ EOLIAN static Evas_Textgrid_Font_Style
_evas_textgrid_supported_font_styles_get(Eo *eo_obj EINA_UNUSED, Evas_Textgrid_Data *o EINA_UNUSED) _evas_textgrid_supported_font_styles_get(Eo *eo_obj EINA_UNUSED, Evas_Textgrid_Data *o EINA_UNUSED)
{ {
/* FIXME: to do */ /* FIXME: to do */
return 0; return EVAS_TEXTGRID_FONT_STYLE_NORMAL;
} }
EOLIAN static void EOLIAN static void

View File

@ -5,10 +5,13 @@ class Evas.Textgrid (Evas.Object, Efl.Text_Properties)
properties { properties {
supported_font_styles { supported_font_styles {
set { set {
/*@ No description supplied by the EAPI. */ /*@
This function is not implemented yet, do not use. */
} }
get { get {
/*@ No description supplied by the EAPI. */ /*@
This function is not implemented yet, do not use.
@return EVAS_TEXTGRID_FONT_STYLE_NORMAL */
} }
values { values {
Evas_Textgrid_Font_Style styles; Evas_Textgrid_Font_Style styles;