Efl gfx gradient: Fix Eolian warnings.

This includes either migrating types to eolian, fixing namespace or
importing extra types.
This commit is contained in:
Tom Hacohen 2016-02-16 14:20:15 +00:00
parent 2e7cab107d
commit c0ba02e0ab
1 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
import efl_gfx_types;
interface Efl.Gfx.Gradient.Base
{
eo_prefix: efl_gfx_gradient;
@ -11,7 +13,7 @@ interface Efl.Gfx.Gradient.Base
[[Get the list of color stops.]]
}
values {
colors: const(Efl_Gfx_Gradient_Stop) *; [[color stops list]]
colors: const(Efl.Gfx.Gradient.Stop) *; [[color stops list]]
length: uint; [[length of the list]]
}
}
@ -25,7 +27,7 @@ interface Efl.Gfx.Gradient.Base
]]
}
values {
s: Efl_Gfx_Gradient_Spread; [[spread type to be used]]
s: Efl.Gfx.Gradient.Spread; [[spread type to be used]]
}
}
}