From 78f657b4bd45f88b54a0f6f1f957f08cc0700de2 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Wed, 10 Sep 2014 15:09:08 +0100 Subject: [PATCH] update according to latest eolian changes --- src/lib/elm_widget.eo | 3 +-- src/lib/elm_win.eo | 9 +++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/lib/elm_widget.eo b/src/lib/elm_widget.eo index 42aa496..9df00f8 100644 --- a/src/lib/elm_widget.eo +++ b/src/lib/elm_widget.eo @@ -143,10 +143,9 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } get { /*@ No description supplied by the EAPI. */ - objs: const; } values { - list *objs; + list *objs @const_get; } } can_focus { diff --git a/src/lib/elm_win.eo b/src/lib/elm_win.eo index 9235531..54cc537 100644 --- a/src/lib/elm_win.eo +++ b/src/lib/elm_win.eo @@ -118,7 +118,6 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window, ingroup Win @since 1.9 */ legacy: elm_win_wm_rotation_available_rotations_set; - rotations: const; } get { /*@ @@ -134,7 +133,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window, return: bool; } values { - int *rotations; /*@ The array of rotation value. */ + int *rotations @const_set; /*@ The array of rotation value. */ uint count; /*@ The number of array of rotations */ } } @@ -361,7 +360,6 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window, @ingroup Win @since 1.8 */ - profiles: const; } get { /*@ @@ -374,7 +372,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window, return: bool; } values { - char **profiles; /*@ The string array of available profiles */ + char **profiles @const_set; /*@ The string array of available profiles */ uint count; /*@ The number of members in profiles */ } } @@ -534,10 +532,9 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window, @return The icon object set @ingroup Win */ - icon: const; } values { - Evas_Object *icon; /*@ The Evas image object to use for an icon */ + Evas_Object *icon @const_get; /*@ The Evas image object to use for an icon */ } } quickpanel_priority_minor { -- 2.7.4