~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_registry.cc

  • Committer: Monty Taylor
  • Date: 2009-07-16 00:24:27 UTC
  • mto: (1093.1.18 captain)
  • mto: This revision was merged to the branch mainline in revision 1098.
  • Revision ID: mordred@inaugust.com-20090716002427-dki0pvdyflastrto
Naming cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
void PluginRegistry::add(drizzled::plugin::Handle *plugin)
61
61
{
62
 
  string add_str(plugin->name.str);
 
62
  string add_str(plugin->getName());
63
63
  transform(add_str.begin(), add_str.end(),
64
64
            add_str.begin(), ::tolower);
65
65