Efl eolian: Adjust according to eolian syntax changes.

This commit is contained in:
Tom Hacohen 2014-06-20 12:56:29 +01:00
parent 60c35f329f
commit 0658591a4d
6 changed files with 10 additions and 17 deletions

View File

@ -1,4 +1,4 @@
class Ecore_Mainloop (Eo_Base)
class Ecore_Mainloop (Eo.Base)
{
legacy_prefix: null;
data: null;

View File

@ -19,7 +19,7 @@ interface Efl_Interface_Color {
get {
}
keys {
const Efl_Interface_Part *part;
const(Efl_Interface_Part) *part;
}
values {
int r; /*@ The red component of the given color. */

View File

@ -8,8 +8,8 @@ interface Efl_Interface_File {
get {
}
values {
const char *file; /*@ The path to the file to load @p from */
const char *group; /*@ The name of the group, in @p file */
const(char) *file; /*@ The path to the file to load @p from */
const(char) *group; /*@ The name of the group, in @p file */
}
}
}
@ -18,11 +18,11 @@ interface Efl_Interface_File {
const;
return Eina_Bool;
params {
@in const char *file @nonull; /*@ The filename to be used to save the data (extension
@in const(char) *file @nonull; /*@ The filename to be used to save the data (extension
obligatory). */
@in const char *key; /*@ The image key in the file (if an Eet one), or @c NULL,
@in const(char) *key; /*@ The image key in the file (if an Eet one), or @c NULL,
otherwise. */
@in const char *flags; /*@ String containing the flags to be used (@c NULL for
@in const(char) *flags; /*@ String containing the flags to be used (@c NULL for
none). */
}
}

View File

@ -8,7 +8,7 @@ interface Efl_Interface_Part {
get {
}
keys {
const char *name; /*@ part name. */
const(char) *name; /*@ part name. */
}
values {
Eo *pobj; /*@ the object that populates the part. */

View File

@ -17,7 +17,7 @@ interface Efl_Interface_Text {
@return the markup text of the object. */
}
values {
const char *text; /*@ the markup text to use. */
const(char) *text; /*@ the markup text to use. */
}
}
cursor {
@ -30,8 +30,4 @@ interface Efl_Interface_Text {
}
}
}
implements {
virtual::text_markup;
virtual::cursor::get;
}
}

View File

@ -27,12 +27,9 @@ interface Efl_Interface_Text_Properties {
@see evas_object_text_font_set() */
}
values {
const char* font; /*@ The font family name or filename. */
const(char) *font; /*@ The font family name or filename. */
Evas_Font_Size size; /*@ The font size, in points. */
}
}
}
implements {
virtual::font;
}
}