Remove this. everywhere, add small note to override style

This commit is contained in:
Infi
2024-04-10 17:45:25 +02:00
parent 2dfd11f018
commit 948383b0c5
28 changed files with 316 additions and 304 deletions
+8 -8
View File
@@ -278,7 +278,7 @@ internal class SingleRow : ISelectorPart {
public uint Row { get; }
public SingleRow(uint row) {
this.Row = row;
Row = row;
}
}
@@ -287,8 +287,8 @@ internal class IndexRange : ISelectorPart {
public uint End { get; }
public IndexRange(uint start, uint end) {
this.Start = start;
this.End = end;
Start = start;
End = end;
}
}
@@ -299,7 +299,7 @@ internal class ColumnSpecifier : ISelectorPart {
public uint Column { get; }
public ColumnSpecifier(uint column) {
this.Column = column;
Column = column;
}
}
@@ -310,9 +310,9 @@ internal class AutoTranslateEntry {
internal SeString SeString { get; }
public AutoTranslateEntry(uint group, uint row, string str, SeString seStr) {
this.Group = group;
this.Row = row;
this.String = str;
this.SeString = seStr;
Group = group;
Row = row;
String = str;
SeString = seStr;
}
}