Ecore_Imf: fix wrong annotation and enum name 84/158184/3 accepted/tizen/unified/20171102.061602 submit/tizen/20171101.082936
authorJinYong Park <j4939.park@samsung.com>
Mon, 30 Oct 2017 08:27:53 +0000 (17:27 +0900)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Wed, 1 Nov 2017 06:02:27 +0000 (06:02 +0000)
Summary

There are wrong annotation about version and wrong enum name
so fix that.

https://phab.enlightenment.org/D5403

Change-Id: I59a8a11b7dd094985c73d776ed1039ddd0134a5f
Signed-off-by: JinYong Park <j4939.park@samsung.com>
src/lib/ecore_imf/Ecore_IMF.h

index 5289ef6..5ddfa1c 100644 (file)
@@ -384,12 +384,12 @@ typedef enum
    ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_NORMAL,            /**< The plain normal layout @since 1.12 */
    ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_FILENAME,          /**< Filename layout. Symbols such as '/' should be disabled. @since 1.12 */
    ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_PERSON_NAME        /**< The name of a person. @since 1.12 */
-} Ecore_IMF_Input_Layout_Normal_Variation;
+} Ecore_IMF_Input_Panel_Layout_Normal_Variation;
 
 /**
  * @typedef Ecore_IMF_Input_Panel_Layout_Numberonly_Variation
  * @brief Enumeration for defining the types of Ecore_IMF Input Panel layout for numberonly variation
- * @since 1.18
+ * @since 1.8
  */
 typedef enum
 {
@@ -397,7 +397,7 @@ typedef enum
    ECORE_IMF_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED,            /**< The number layout to allow a positive or negative sign at the start @since 1.8 */
    ECORE_IMF_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL,           /**< The number layout to allow decimal point to provide fractional value @since 1.8 */
    ECORE_IMF_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL /**< The number layout to allow decimal point and negative sign @since 1.8 */
-} Ecore_IMF_Input_Layout_Numberonly_Variation;
+} Ecore_IMF_Input_Panel_Layout_Numberonly_Variation;
 
 /**
  * @typedef Ecore_IMF_Input_Panel_Layout_Password_Variation