aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console/ConsoleDisplayTable.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Console/ConsoleDisplayTable.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Console/ConsoleDisplayTable.cs b/OpenSim/Framework/Console/ConsoleDisplayTable.cs
index c620dfe..c6f2272 100644
--- a/OpenSim/Framework/Console/ConsoleDisplayTable.cs
+++ b/OpenSim/Framework/Console/ConsoleDisplayTable.cs
@@ -139,16 +139,16 @@ namespace OpenSim.Framework.Console
139 139
140 public struct ConsoleDisplayTableRow 140 public struct ConsoleDisplayTableRow
141 { 141 {
142 public List<string> Cells { get; private set; } 142 public List<object> Cells { get; private set; }
143 143
144 public ConsoleDisplayTableRow(List<string> cells) : this() 144 public ConsoleDisplayTableRow(List<object> cells) : this()
145 { 145 {
146 Cells = cells; 146 Cells = cells;
147 } 147 }
148 148
149 public ConsoleDisplayTableRow(params string[] cells) : this() 149 public ConsoleDisplayTableRow(params object[] cells) : this()
150 { 150 {
151 Cells = new List<string>(cells); 151 Cells = new List<object>(cells);
152 } 152 }
153 } 153 }
154} \ No newline at end of file 154} \ No newline at end of file