From 8a5d0a38f26a4ccf44ce1c96cb8a55fef75a74f6 Mon Sep 17 00:00:00 2001 From: Vitor Sousa Date: Thu, 14 Jan 2016 18:11:20 -0200 Subject: [PATCH] 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. --- legacy/elementary/src/lib/elm_entry.eo | 2 +- legacy/elementary/src/lib/elm_hoversel.eo | 2 +- legacy/elementary/src/lib/elm_hoversel_item.eo | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/elementary/src/lib/elm_entry.eo b/legacy/elementary/src/lib/elm_entry.eo index ab6962c17d..5bdcda2129 100644 --- a/legacy/elementary/src/lib/elm_entry.eo +++ b/legacy/elementary/src/lib/elm_entry.eo @@ -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.]] } diff --git a/legacy/elementary/src/lib/elm_hoversel.eo b/legacy/elementary/src/lib/elm_hoversel.eo index cf2d1a2c78..c922a0d944 100644 --- a/legacy/elementary/src/lib/elm_hoversel.eo +++ b/legacy/elementary/src/lib/elm_hoversel.eo @@ -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]] } diff --git a/legacy/elementary/src/lib/elm_hoversel_item.eo b/legacy/elementary/src/lib/elm_hoversel_item.eo index 04efc85e7b..b0a9e1f8fa 100644 --- a/legacy/elementary/src/lib/elm_hoversel_item.eo +++ b/legacy/elementary/src/lib/elm_hoversel_item.eo @@ -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]] } } }