Fix module api warning dialog. The params were switched. Should read better

now.


SVN revision: 23723
This commit is contained in:
Christopher Michael 2006-07-05 21:23:42 +00:00
parent 06d5e86fae
commit 9911cc4fc3
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
/* TODO List:
*
* * add module types/classes
* * add list of exclusions that a module cant work with
* * add list of exclusions that a module cant work withApi
*
*/
@ -170,7 +170,7 @@ e_module_new(const char *name)
snprintf(body, sizeof(body), _("Module API Error<br>Error initializing Module: %s<br>"
"It requires a minimum module API version of: %i.<br>"
"The module API advertized by Enlightenment is: %i.<br>"),
_(m->api->name), E_MODULE_API_VERSION, m->api->version);
_(m->api->name), m->api->version, E_MODULE_API_VERSION);
snprintf(title, sizeof(title), _("Enlightenment %s Module"), _(m->api->name));