remove ChatLine.wrapped; never used

This commit is contained in:
Chris Forbes
2011-09-24 21:57:07 +12:00
parent 1c2f857222
commit d3bfcfea5c

View File

@@ -50,7 +50,7 @@ namespace OpenRA.Widgets
foreach (var line in recentLines.AsEnumerable().Reverse()) foreach (var line in recentLines.AsEnumerable().Reverse())
{ {
chatpos.Y -= 20; chatpos.Y -= 20;
int inset = 0; var inset = 0;
if (!string.IsNullOrEmpty(line.Owner)) if (!string.IsNullOrEmpty(line.Owner))
{ {
@@ -104,6 +104,5 @@ namespace OpenRA.Widgets
{ {
public Color Color = Color.White; public Color Color = Color.White;
public string Owner, Text; public string Owner, Text;
public bool wrapped = false;
} }
} }