[elm] Fix missing initializer on base smart class.

Please explain this new access virtual.


Patch by: Gustavo Lima Chaves <glima@profusion.mobi>



SVN revision: 73359
This commit is contained in:
Gustavo Lima Chaves 2012-07-05 14:37:18 +00:00
parent ff4b55937a
commit c96106df2c
1 changed files with 4 additions and 1 deletions

View File

@ -356,7 +356,7 @@
*/
#define ELM_WIDGET_SMART_CLASS_INIT(smart_class_init) \
{smart_class_init, ELM_WIDGET_SMART_CLASS_VERSION, NULL, NULL, NULL, NULL, \
NULL, NULL, NULL, NULL, NULL}
NULL, NULL, NULL, NULL, NULL, NULL}
/**
* @def ELM_WIDGET_SMART_CLASS_INIT_NULL
@ -394,6 +394,9 @@
#define ELM_WIDGET_SMART_CLASS_INIT_NAME_VERSION(name) \
ELM_WIDGET_SMART_CLASS_INIT(EVAS_SMART_CLASS_INIT_NAME_VERSION(name))
/* Please, ALWAYS update the ELM_WIDGET_SMART_CLASS_INIT macro
* whenever you change the following struct! */
/**
* Base widget smart class. It has the 'virtual' functions for all
* general, common actions on Elementary widgets.