mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 17:48:01 +02:00
Renamed System.Collections.Generic to System.Collections
This commit is contained in:
parent
4cb9791845
commit
dbd9b32e3f
281 changed files with 368 additions and 341 deletions
|
@ -1,7 +1,7 @@
|
|||
using Beefy.widgets;
|
||||
using Beefy.theme.dark;
|
||||
using IDE.Compiler;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Threading;
|
||||
using System;
|
||||
using Beefy.gfx;
|
||||
|
@ -276,7 +276,10 @@ namespace IDE.ui
|
|||
SetLabel(item, codeStr);
|
||||
|
||||
let descItem = item.GetSubItem(1);
|
||||
SetLabel(descItem, scope String(32)..Append(error.mError));
|
||||
String errStr = scope String(32)..Append(error.mError);
|
||||
errStr.Replace('\n', ' ');
|
||||
|
||||
SetLabel(descItem, errStr);
|
||||
|
||||
let projectItem = item.GetSubItem(2);
|
||||
SetLabel(projectItem, error.mProject);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue