~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

  • Committer: Lee Bieber
  • Date: 2011-01-11 00:32:40 UTC
  • mfrom: (2070.1.3 build)
  • Revision ID: kalebral@gmail.com-20110111003240-6zjgr8iv04xeznfw
Merge Andrew - fix bug #701124: wrong intl text domain
Merge Andrew - fix bug #701137: drizzled --help not translated  
Merge Shrews - fix bug 701056: filtered_replicator not filtering all events
Merge Monty - Changed the plugin_registry to store a pair of plugin_type/plugin_name instead of just plugin_name

Show diffs side-by-side

added added

removed removed

Lines of Context:
370
370
  /*
371
371
    Now we initialize all remaining plugins
372
372
  */
373
 
  std::map<std::string, module::Module *>::const_iterator modules=
 
373
  module::Registry::ModuleMap::const_iterator modules=
374
374
    registry.getModulesMap().begin();
375
375
    
376
376
  while (modules != registry.getModulesMap().end())
388
388
    }
389
389
  }
390
390
 
 
391
 
391
392
  BOOST_FOREACH(plugin::Plugin::map::value_type value, registry.getPluginsMap())
392
393
  {
393
394
    value.second->prime();