From 9911cc4fc3c2a33e43b06ed6f321f25e1be2edbd Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 5 Jul 2006 21:23:42 +0000 Subject: [PATCH] Fix module api warning dialog. The params were switched. Should read better now. SVN revision: 23723 --- src/bin/e_module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_module.c b/src/bin/e_module.c index 2c89dae2f..4ce5ef051 100644 --- a/src/bin/e_module.c +++ b/src/bin/e_module.c @@ -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
Error initializing Module: %s
" "It requires a minimum module API version of: %i.
" "The module API advertized by Enlightenment is: %i.
"), - _(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));