Print a warning instead of an error when we can't find a module, since it confuses...
authorpabs <pabs@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 28 Jun 2006 15:28:31 +0000 (15:28 +0000)
committerpabs <pabs@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 28 Jun 2006 15:28:31 +0000 (15:28 +0000)
git-svn-id: http://svn.voria.com/code@182 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/module.cpp

index 8016a9b..7e50d08 100644 (file)
@@ -118,7 +118,7 @@ synfig::Module::Register(const String &module_name, ProgressCallback *callback)
        
        if(!module)
        {
-               if(callback)callback->error(strprintf(_("Unable to find module \"%s\" (%s)"),module_name.c_str(),lt_dlerror()));
+               if(callback)callback->warning(strprintf(_("Unable to find module \"%s\" (%s)"),module_name.c_str(),lt_dlerror()));
                return false;
        }