Efl.Canvas.Surface: Fix linking of inexisting functions

The EO files specified some functions that were not implemented.
Somehow this links fine with recent GCC but older versions have
trouble.
This commit is contained in:
Jean-Philippe Andre 2016-03-17 14:02:26 +09:00
parent 8c398c365c
commit ca65f66fc0
4 changed files with 1 additions and 3 deletions

View File

@ -29,5 +29,6 @@ mixin Efl.Canvas.Surface (Evas.Image)
}
implements {
Eo.Base.constructor;
@virtual .native_buffer.set;
}
}

View File

@ -5,6 +5,5 @@ class Efl.Canvas.Surface_Tbm (Efl.Canvas.Surface)
Eo.Base.constructor;
Eo.Base.destructor;
Efl.Canvas.Surface.native_buffer.set;
Efl.Canvas.Surface.native_buffer.get;
}
}

View File

@ -4,7 +4,6 @@ class Efl.Canvas.Surface_Wayland (Efl.Canvas.Surface)
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Efl.Canvas.Surface.native_buffer.get;
Efl.Canvas.Surface.native_buffer.set;
}
}

View File

@ -22,7 +22,6 @@ class Efl.Canvas.Surface_X11 (Efl.Canvas.Surface)
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Efl.Canvas.Surface.native_buffer.get;
Efl.Canvas.Surface.native_buffer.set;
}
}