mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 07:44:09 +02:00
Fixed spelling mistake
This commit is contained in:
parent
ca668bf0fe
commit
7ad6df2c6e
17 changed files with 26 additions and 26 deletions
|
@ -307,11 +307,11 @@ namespace IDE
|
|||
|
||||
public class Config
|
||||
{
|
||||
public Dictionary<String, Options> mPlatforms = new Dictionary<String, Options>() ~ DeleteDictionyAndKeysAndItems!(_);
|
||||
public Dictionary<String, Options> mPlatforms = new Dictionary<String, Options>() ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
}
|
||||
|
||||
public BeefGlobalOptions mBeefGlobalOptions = new BeefGlobalOptions() ~ delete _;
|
||||
public Dictionary<String, Config> mConfigs = new Dictionary<String, Config>() ~ DeleteDictionyAndKeysAndItems!(_);
|
||||
public Dictionary<String, Config> mConfigs = new Dictionary<String, Config>() ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
|
||||
public class ProjectSourceCompileInstance
|
||||
{
|
||||
|
@ -368,7 +368,7 @@ namespace IDE
|
|||
public CompositeFile mCompositeFile ~ delete _;
|
||||
public List<Project> mProjects = new List<Project>() ~ DeleteContainerAndItems!(_);
|
||||
public List<ProjectSpec> mProjectSpecs = new .() ~ DeleteContainerAndItems!(_);
|
||||
public Dictionary<String, Project> mProjectNameMap = new .() ~ DeleteDictionyAndKeys!(_);
|
||||
public Dictionary<String, Project> mProjectNameMap = new .() ~ DeleteDictionaryAndKeys!(_);
|
||||
public Project mStartupProject;
|
||||
public bool mNeedsCreate;
|
||||
public bool mHasChanged;
|
||||
|
@ -779,7 +779,7 @@ namespace IDE
|
|||
|
||||
public void Deserialize(StructuredData data)
|
||||
{
|
||||
DeleteDictionyAndKeysAndItems!(mConfigs);
|
||||
DeleteDictionaryAndKeysAndItems!(mConfigs);
|
||||
mConfigs = new Dictionary<String, Config>();
|
||||
|
||||
using (data.Open("Workspace"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue