~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/plugins.cc

  • Committer: Brian Aker
  • Date: 2010-03-24 15:14:52 UTC
  • mfrom: (1392.1.2 bug546676)
  • Revision ID: brian@gaz-20100324151452-b3z61mr5hrjbbnfx
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
bool PluginsTool::Generator::populate()
49
49
{
50
 
  const plugin::Plugin *plugin= (*it).second;
51
 
 
52
50
  if (it == end)
53
51
    return false;
54
52
 
 
53
  const plugin::Plugin *plugin= (*it).second;
 
54
 
55
55
  /* PLUGIN_NAME */
56
56
  push(plugin->getName());
57
57
 
62
62
  push(plugin->isActive());
63
63
 
64
64
  /* MODULE_NAME */
65
 
  push();
 
65
  push(plugin->getModuleName());
66
66
 
67
67
  it++;
68
68