elementary: Rename Elm_Icon_Type to Elm.Icon.Type in .eo files

Correct the usage of the type Elm_Icon_Type by replacing it with its
Eolian name (Elm.Icon.Type) in .eo files.
This commit is contained in:
Vitor Sousa 2016-01-14 18:11:20 -02:00 committed by Felipe Magno de Almeida
parent 82e91cb805
commit 8a5d0a38f2
3 changed files with 3 additions and 3 deletions

View File

@ -880,7 +880,7 @@ class Elm.Entry (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interface,
params {
@in label: const(char)* @optional; [[The item's text label.]]
@in icon_file: const(char)* @optional; [[The item's icon file.]]
@in icon_type: Elm_Icon_Type; [[The item's icon type.]]
@in icon_type: Elm.Icon.Type; [[The item's icon type.]]
@in func: Evas_Smart_Cb @optional; [[The callback to execute when the item is clicked.]]
@in data: const(void)* @optional; [[The data to associate with the item for related functions.]]
}

View File

@ -79,7 +79,7 @@ class Elm.Hoversel (Elm.Button, Evas.Selectable_Interface,
params {
@in label: const(char)* @optional; [[The text label to use for the item (NULL if not desired)]]
@in icon_file: const(char)* @optional; [[An image file path on disk to use for the icon or standard icon name (NULL if not desired)]]
@in icon_type: Elm_Icon_Type; [[The icon type if relevant]]
@in icon_type: Elm.Icon.Type; [[The icon type if relevant]]
@in func: Evas_Smart_Cb @optional; [[Convenience function to call when this item is selected. The last parameter $event_info of $func is the selected item pointer.]]
@in data: const(void)* @optional; [[Data to pass to item-related functions]]
}

View File

@ -13,7 +13,7 @@ class Elm.Hoversel_Item(Elm.Widget_Item)
values {
icon_file: const (char) * @nullable; [[An image file path on disk to use for the icon or standard icon name]]
icon_group: const (char) * @nullable; [[The edje group to use if $icon_file is an edje file. Set this to NULL if the icon is not an edje file]]
icon_type: Elm_Icon_Type; [[The icon type]]
icon_type: Elm.Icon.Type; [[The icon type]]
}
}
}