mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
Fix null pointer that builds in Windows apparently didn't care about
This commit is contained in:
parent
61788e2be2
commit
160882a962
1 changed files with 5 additions and 0 deletions
|
@ -79,6 +79,11 @@ namespace ScintillaNET
|
|||
|
||||
public class Line
|
||||
{
|
||||
public Line()
|
||||
{
|
||||
Text = "";
|
||||
}
|
||||
|
||||
public int Position { get; private set; }
|
||||
public int EndPosition { get; private set; }
|
||||
public string Text { get; private set; }
|
||||
|
|
Loading…
Reference in a new issue