Changeset 1321 for trunk/eraser6
- Timestamp:
- 11/24/2009 1:54:12 AM (4 years ago)
- File:
-
- 1 edited
-
trunk/eraser6/Eraser/Program.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/Eraser/Program.cs
r1317 r1321 1317 1317 /// Constructor. 1318 1318 /// </summary> 1319 /// <param name="pluginId">The GUID of the plugin for which settings are stored.</param> 1319 1320 /// <param name="key">The registry key to look for the settings in.</param> 1320 public RegistrySettings(RegistryKey key) 1321 { 1321 public RegistrySettings(Guid pluginId, RegistryKey key) 1322 { 1323 this.pluginID = pluginId; 1322 1324 this.key = key; 1323 1325 } … … 1434 1436 1435 1437 //Return the Settings object. 1436 return new RegistrySettings( pluginsKey);1438 return new RegistrySettings(guid, pluginsKey); 1437 1439 } 1438 1440 finally
Note: See TracChangeset
for help on using the changeset viewer.
