mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 16:40:26 +02:00
Fixed some IDE issues
Fixed some issues related to creating new projects and workspace Added 'Refresh' option to project Fixed auto-include refresh Fixed folder rename Fixed EOF issue involving DbgModule string table
This commit is contained in:
parent
8a02874b51
commit
0ce6e44523
14 changed files with 374 additions and 163 deletions
|
@ -43,7 +43,6 @@ namespace System.IO
|
|||
|
||||
public void Reset()
|
||||
{
|
||||
//mRootFolder = .Default;
|
||||
mSelectedPath.Clear();
|
||||
mDescriptionText.Clear();
|
||||
mSelectedPathNeedsCheck = false;
|
||||
|
|
|
@ -838,6 +838,7 @@ namespace System
|
|||
public void Append(String str, int offset, int length)
|
||||
{
|
||||
Debug.Assert((uint)offset <= (uint)str.mLength);
|
||||
Debug.Assert(length >= 0);
|
||||
Debug.Assert((uint)offset + (uint)length <= (uint)str.mLength);
|
||||
Append(str.Ptr + offset, length);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue