q66 pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=e7a60e4eee50d78ebc61d6f8eccd6d9849c65a7d
commit e7a60e4eee50d78ebc61d6f8eccd6d9849c65a7d Author: Daniel Kolesa <[email protected]> Date: Mon Jul 14 16:26:14 2014 +0100 update according to eolian type changes --- src/lib/elm_app_client_view.eo | 2 +- src/lib/elm_app_server.eo | 2 +- src/lib/elm_app_server_view.eo | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_app_client_view.eo b/src/lib/elm_app_client_view.eo index c676d5d..892b8b5 100644 --- a/src/lib/elm_app_client_view.eo +++ b/src/lib/elm_app_client_view.eo @@ -43,7 +43,7 @@ class Elm_App_Client_View (Eo.Base) uint w; /*@ icon width */ uint h; /*@ icon height */ bool has_alpha; /*@ if icon have alpha channel */ - const(uchar)* pixels; /*@ uchar array, with all bytes of icon */ + const(ubyte)* pixels; /*@ uchar array, with all bytes of icon */ } } path { diff --git a/src/lib/elm_app_server.eo b/src/lib/elm_app_server.eo index 945fd76..503ae85 100644 --- a/src/lib/elm_app_server.eo +++ b/src/lib/elm_app_server.eo @@ -54,7 +54,7 @@ class Elm_App_Server (Eo.Base) uint w; uint h; bool has_alpha; - const(uchar)* pixels; + const(ubyte)* pixels; } } } diff --git a/src/lib/elm_app_server_view.eo b/src/lib/elm_app_server_view.eo index 83df539..11dd109 100644 --- a/src/lib/elm_app_server_view.eo +++ b/src/lib/elm_app_server_view.eo @@ -86,7 +86,7 @@ class Elm_App_Server_View (Eo.Base) uint w; uint h; bool has_alpha; - const(uchar)* pixels; + const(ubyte)* pixels; } } } --
