ecore_imf: Remove security_code in autofill type

Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
This commit is contained in:
Jihoon Kim 2018-06-18 08:45:29 +09:00
parent 1adb73cef8
commit 24536de3a9
2 changed files with 12 additions and 16 deletions

View File

@ -380,13 +380,12 @@ typedef enum
ECORE_IMF_INPUT_HINT_AUTOFILL_CREDIT_CARD_EXPIRATION_MONTH = 0x300, /**< Autofill hint for a credit card expiration month @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_CREDIT_CARD_EXPIRATION_YEAR = 0x400, /**< Autofill hint for a credit card expiration year @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_CREDIT_CARD_NUMBER = 0x500, /**< Autofill hint for a credit card number @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_CREDIT_CARD_SECURITY_CODE = 0x600, /**< Autofill hint for a credit card security code @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_EMAIL_ADDRESS = 0x700, /**< Autofill hint for an email address @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_NAME = 0x800, /**< Autofill hint for a user's real name @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_PHONE = 0x900, /**< Autofill hint for a phone number @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_POSTAL_ADDRESS = 0xA00, /**< Autofill hint for a postal address @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_POSTAL_CODE = 0xB00, /**< Autofill hint for a postal code @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_ID = 0xC00 /**< Autofill hint for a user's ID @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_EMAIL_ADDRESS = 0x600, /**< Autofill hint for an email address @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_NAME = 0x700, /**< Autofill hint for a user's real name @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_PHONE = 0x800, /**< Autofill hint for a phone number @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_POSTAL_ADDRESS = 0x900, /**< Autofill hint for a postal address @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_POSTAL_CODE = 0xA00, /**< Autofill hint for a postal code @since 1.21 */
ECORE_IMF_INPUT_HINT_AUTOFILL_ID = 0xB00 /**< Autofill hint for a user's ID @since 1.21 */
} Ecore_IMF_Input_Hints;
/**

View File

@ -248,25 +248,22 @@ enum Elm.Input.Hints
autofill_credit_card_number = 0x500, [[ Autofill hint for a credit card number
@since 1.21]]
autofill_credit_card_security_code = 0x600, [[ Autofill hint for a credit card security code
autofill_email_address = 0x600, [[ Autofill hint for an email address
@since 1.21]]
autofill_email_address = 0x700, [[ Autofill hint for an email address
autofill_name = 0x700, [[ Autofill hint for a user's real name
@since 1.21]]
autofill_name = 0x800, [[ Autofill hint for a user's real name
autofill_phone = 0x800, [[ Autofill hint for a phone number
@since 1.21]]
autofill_phone = 0x900, [[ Autofill hint for a phone number
autofill_postal_address = 0x900, [[ Autofill hint for a postal address
@since 1.21]]
autofill_postal_address = 0xA00, [[ Autofill hint for a postal address
autofill_postal_code = 0xA00, [[ Autofill hint for a postal code
@since 1.21]]
autofill_postal_code = 0xB00, [[ Autofill hint for a postal code
@since 1.21]]
autofill_id = 0xC00 [[ Autofill hint for a user's ID
autofill_id = 0xB00 [[ Autofill hint for a user's ID
@since 1.21]]
}