1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 09:27:59 +02:00

Fixed spelling mistake

This commit is contained in:
Brian Fiete 2020-02-08 06:12:04 -08:00
parent ca668bf0fe
commit 7ad6df2c6e
17 changed files with 26 additions and 26 deletions

View file

@ -93,7 +93,7 @@ namespace IDE.Clang
public Dictionary<ProjectSource, FileEntry> mProjectFileSet = new Dictionary<ProjectSource, FileEntry>() ~ delete _;
public Dictionary<Project, String> mProjectBuildString = new Dictionary<Project, String>() ~ { for (var val in _.Values) delete val; delete _; }; // Don't delete 'Project', only the String
public Dictionary<String, String> mHeaderToSourceMap = new Dictionary<String, String>() ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, String> mHeaderToSourceMap = new Dictionary<String, String>() ~ DeleteDictionaryAndKeysAndItems!(_);
FileWatcher mFileWatcher = new FileWatcher() ~ delete _;
public bool mDoDependencyCheck = true;

View file

@ -14,7 +14,7 @@ namespace IDE
public Monitor mMonitor = new .() ~ delete _;
static String sVersionStr = "///@singleFileVersion ";
static String sSectionStr = "///@embed ";
public Dictionary<String, String> mData = new .() ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, String> mData = new .() ~ DeleteDictionaryAndKeysAndItems!(_);
public String mFilePath ~ delete _;
public bool mPendingSave;
public bool mHasChanges;

View file

@ -52,7 +52,7 @@ namespace IDE
// One watcher per directory
public static int32 sDbgFileCreateDelay;
Dictionary<String, WatcherEntry> mWatchers = new Dictionary<String, WatcherEntry>();
Dictionary<String, DepInfo> mWatchedFiles = new Dictionary<String, DepInfo>() ~ DeleteDictionyAndKeysAndItems!(_); // Including ref count
Dictionary<String, DepInfo> mWatchedFiles = new Dictionary<String, DepInfo>() ~ DeleteDictionaryAndKeysAndItems!(_); // Including ref count
List<ChangeRecord> mChangeList = new .() ~ DeleteContainerAndItems!(_);
Dictionary<String, ChangeRecord> mChangeMap = new .() ~ delete _;
List<Object> mDependencyChangeList = new List<Object>() ~ delete _;

View file

@ -416,7 +416,7 @@ namespace IDE
public String mFileName ~ delete _;
public String mArgs ~ delete _;
public String mWorkingDir ~ delete _;
public Dictionary<String, String> mEnvVars ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, String> mEnvVars ~ DeleteDictionaryAndKeysAndItems!(_);
public ArgsFileKind mUseArgsFile;
public int32 mParallelGroup = -1;
public bool mIsTargetRun;

View file

@ -1205,7 +1205,7 @@ 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 class Dependency
@ -1235,7 +1235,7 @@ namespace IDE
public int32 mCurResVer;
public int32 mLastGeneratedResVer;
public Dictionary<String, Config> mConfigs = new Dictionary<String, Config>() ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, Config> mConfigs = new Dictionary<String, Config>() ~ DeleteDictionaryAndKeysAndItems!(_);
public GeneralOptions mGeneralOptions = new GeneralOptions() ~ delete _;
public BeefGlobalOptions mBeefGlobalOptions = new BeefGlobalOptions() ~ delete _;
@ -1834,7 +1834,7 @@ namespace IDE
}
}
DeleteDictionyAndKeysAndItems!(mConfigs);
DeleteDictionaryAndKeysAndItems!(mConfigs);
mConfigs = new Dictionary<String, Config>();
for (var configNameSV in data.Enumerate("Configs"))

View file

@ -25,8 +25,8 @@ namespace IDE
public Object mTargetObject;
}
public Dictionary<String, Target> mTargets = new .() ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, Cmd> mCmds = new .() ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, Target> mTargets = new .() ~ DeleteDictionaryAndKeysAndItems!(_);
public Dictionary<String, Cmd> mCmds = new .() ~ DeleteDictionaryAndKeysAndItems!(_);
}
public enum CmdFlags

View file

@ -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"))

View file

@ -17,7 +17,7 @@ namespace IDE.ui
{
public String mDocString = new String(256) ~ delete _;
public String mBriefString ~ delete _;
public Dictionary<String, String> mParamInfo ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, String> mParamInfo ~ DeleteDictionaryAndKeysAndItems!(_);
public String ShowDocString
{

View file

@ -56,7 +56,7 @@ namespace IDE.ui
delete _;
};
public static int32 sCurrentMRUIndex = 1;
static Dictionary<String, TimeEntry> sTimeCache = new .() ~ DeleteDictionyAndKeysAndItems!(_);
static Dictionary<String, TimeEntry> sTimeCache = new .() ~ DeleteDictionaryAndKeysAndItems!(_);
protected EntryListView mFileList;
EditWidget mEditWidget;

View file

@ -38,7 +38,7 @@ namespace IDE.ui
}
public Project mProject;
Dictionary<String, ValueContainer<bool>> mDependencyValuesMap ~ DeleteDictionyAndKeysAndItems!(_);
Dictionary<String, ValueContainer<bool>> mDependencyValuesMap ~ DeleteDictionaryAndKeysAndItems!(_);
Project.Options[] mCurProjectOptions ~ delete _;
float mLockFlashPct;
public int32 mNewDebugSessionCountdown;

View file

@ -154,7 +154,7 @@ namespace IDE.ui
public String mFileName ~ delete _;
public String mBackupFileName ~ delete _; // Didn't match hash
public String mFoundPath ~ delete _;
public Dictionary<String, String> mRemapMap = new .() ~ DeleteDictionyAndKeysAndItems!(_);
public Dictionary<String, String> mRemapMap = new .() ~ DeleteDictionaryAndKeysAndItems!(_);
public ~this()
{