mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-29 21:05:59 +02:00
DeleteDictionaryAndKeysAndItems to DeleteDictionaryAndKeysAndValues
This commit is contained in:
parent
d78cb3182a
commit
f9b9b15214
15 changed files with 38 additions and 23 deletions
|
@ -17,7 +17,7 @@ namespace IDE.ui
|
|||
{
|
||||
public String mDocString = new String(256) ~ delete _;
|
||||
public String mBriefString ~ delete _;
|
||||
public Dictionary<String, String> mParamInfo ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
public Dictionary<String, String> mParamInfo ~ DeleteDictionaryAndKeysAndValues!(_);
|
||||
|
||||
public String ShowDocString
|
||||
{
|
||||
|
|
|
@ -56,7 +56,7 @@ namespace IDE.ui
|
|||
delete _;
|
||||
};
|
||||
public static int32 sCurrentMRUIndex = 1;
|
||||
static Dictionary<String, TimeEntry> sTimeCache = new .() ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
static Dictionary<String, TimeEntry> sTimeCache = new .() ~ DeleteDictionaryAndKeysAndValues!(_);
|
||||
|
||||
protected EntryListView mFileList;
|
||||
EditWidget mEditWidget;
|
||||
|
|
|
@ -38,7 +38,7 @@ namespace IDE.ui
|
|||
}
|
||||
|
||||
public Project mProject;
|
||||
Dictionary<String, ValueContainer<bool>> mDependencyValuesMap ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
Dictionary<String, ValueContainer<bool>> mDependencyValuesMap ~ DeleteDictionaryAndKeysAndValues!(_);
|
||||
Project.Options[] mCurProjectOptions ~ delete _;
|
||||
float mLockFlashPct;
|
||||
public int32 mNewDebugSessionCountdown;
|
||||
|
|
|
@ -162,7 +162,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 .() ~ DeleteDictionaryAndKeysAndItems!(_);
|
||||
public Dictionary<String, String> mRemapMap = new .() ~ DeleteDictionaryAndKeysAndValues!(_);
|
||||
|
||||
public ~this()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue