jihoon pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=e2301ee5b183755b9f6c12676978d2b9d94b6cd2
commit e2301ee5b183755b9f6c12676978d2b9d94b6cd2 Author: Jihoon Kim <[email protected]> Date: Fri Oct 17 21:45:02 2014 +0900 entry: Describe input panel numberonly variations --- src/lib/elm_entry_common.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/elm_entry_common.h b/src/lib/elm_entry_common.h index 925c48a..4b5215d 100644 --- a/src/lib/elm_entry_common.h +++ b/src/lib/elm_entry_common.h @@ -61,10 +61,10 @@ enum enum { - ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL, - ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED, - ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL, - ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL + ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL, /**< The plain normal number layout @since 1.8 */ + ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED, /**< The number layout to allow a positive or negative sign at the start @since 1.8 */ + ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL, /**< The number layout to allow decimal point to provide fractional value @since 1.8 */ + ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL /**< The number layout to allow decimal point and negative sign @since 1.8 */ }; enum --
