Evas 3d mesh: remove non-implemented functions from "implements".

They are not implemented, so they should not be marked as implemented.
Eo already properly handles functions that are not implemented, this is
completely unnecessary.
This commit is contained in:
Tom Hacohen 2015-04-20 15:00:40 +01:00
parent 1807adf70b
commit c7999fbf42
2 changed files with 1 additions and 21 deletions

View File

@ -855,25 +855,7 @@ _evas_3d_mesh_efl_file_mmap_set(Eo *obj,
return EINA_TRUE;
}
EOLIAN static void
_evas_3d_mesh_efl_file_mmap_get(Eo *obj EINA_UNUSED,
Evas_3D_Mesh_Data *pd EINA_UNUSED,
const Eina_File **f EINA_UNUSED,
const char **key EINA_UNUSED)
{
#warning "mmap get is not implemented on Evas_3D_Mesh."
ERR("mmap get is not implemented !");
}
EOLIAN static void
_evas_3d_mesh_efl_file_file_get(Eo *obj EINA_UNUSED,
Evas_3D_Mesh_Data *pd EINA_UNUSED,
const char **file EINA_UNUSED,
const char **key EINA_UNUSED)
{
#warning "file get is not implemented on Evas_3D_Mesh."
ERR("file get is not implemented !");
}
/* FIXME: Imelemnt mmap_get and file_get. */
EOLIAN static Eina_Bool
_evas_3d_mesh_efl_file_file_set(Eo *obj, Evas_3D_Mesh_Data *pd,

View File

@ -525,9 +525,7 @@ class Evas_3D_Mesh (Evas_3D_Object, Evas.Common_Interface, Efl.File)
Evas_3D_Object.update_notify;
Evas_3D_Object.change_notify;
Efl.File.file.set;
Efl.File.file.get;
Efl.File.mmap.set;
Efl.File.mmap.get;
Efl.File.save;
}