Ignore:
Timestamp:
06/21/12 06:54:33 (11 months ago)
Author:
Michael Medin <michael@…>
Branches:
master, 0.4.2
Children:
393a00f
Parents:
0382c02
Message:
  • Added plugin_id to settings API to allow generating documentation based on module names.
  • Added option --filter <module name> to filter generation based on module name. You can now do this to generate documentation for a given module. nscp settings --settings dummy --generate trac --filter ExternalScripts? --load-all --add-defaults --log error
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/DotnetPlugins/plugin_instance.cpp

    ree52cdd r9fdde88  
    155155  } 
    156156  virtual bool registerPath(String^ path, String^ title, String^ description, bool advanced) { 
    157     get_core()->settings_register_path(to_nstring(path), to_nstring(title), to_nstring(description), advanced); 
     157    get_manager()->settings_register_path(to_nstring(path), to_nstring(title), to_nstring(description), advanced); 
    158158    return true; 
    159159  } 
    160160  virtual bool register_key(String^ path, String^ key, int type, String^ title, String^ description, String^ defaultValue, bool advanced) { 
    161     get_core()->settings_register_key(to_nstring(path), to_nstring(key), type, to_nstring(title), to_nstring(description), to_nstring(defaultValue), advanced); 
     161    get_manager()->settings_register_key(to_nstring(path), to_nstring(key), type, to_nstring(title), to_nstring(description), to_nstring(defaultValue), advanced); 
    162162    return true; 
    163163  } 
Note: See TracChangeset for help on using the changeset viewer.