~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.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:
37
37
  plugin::TableFunction::Generator(arg)
38
38
{
39
39
  module::Registry &registry= module::Registry::singleton();
40
 
  const std::map<std::string, plugin::Plugin *> &plugin_map=
 
40
  const plugin::Plugin::map &plugin_map=
41
41
    registry.getPluginsMap();
42
42
 
43
43
  it= plugin_map.begin();