* don't bomb if modules aren't found (temporary fix)

SVN revision: 12272
This commit is contained in:
azundris 2004-11-26 10:55:51 +00:00 committed by azundris
parent 8d87a9f379
commit 0dd8ecf2b9
1 changed files with 6 additions and 6 deletions

View File

@ -46,12 +46,12 @@ e_module_init(void)
{
E_Module *m;
m = e_module_new("test");
e_module_enable(m);
m = e_module_new("ibar");
e_module_enable(m);
m = e_module_new("dropshadow");
e_module_enable(m);
if (m = e_module_new("test"))
e_module_enable(m);
if (m = e_module_new("ibar"))
e_module_enable(m);
if (m = e_module_new("dropshadow"))
e_module_enable(m);
}
return 1;