aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-05-23 02:37:38 +0100
committerJustin Clark-Casey (justincc)2012-05-23 02:37:38 +0100
commit2222d979cc723ee2f3bad92ffe4991d074b2403a (patch)
treee9d94544a112f85095500c1719fbb78358834c7a /OpenSim/Framework
parentAdd missing Y co-ord in "show region" console command information (diff)
downloadopensim-SC_OLD-2222d979cc723ee2f3bad92ffe4991d074b2403a.zip
opensim-SC_OLD-2222d979cc723ee2f3bad92ffe4991d074b2403a.tar.gz
opensim-SC_OLD-2222d979cc723ee2f3bad92ffe4991d074b2403a.tar.bz2
opensim-SC_OLD-2222d979cc723ee2f3bad92ffe4991d074b2403a.tar.xz
refactor: rename ConsoleTable -> ConsoleDisplayTable for clarity
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Console/ConsoleDisplayTable.cs (renamed from OpenSim/Framework/Console/ConsoleTable.cs)4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Console/ConsoleTable.cs b/OpenSim/Framework/Console/ConsoleDisplayTable.cs
index be3025b..49d5a17 100644
--- a/OpenSim/Framework/Console/ConsoleTable.cs
+++ b/OpenSim/Framework/Console/ConsoleDisplayTable.cs
@@ -38,7 +38,7 @@ namespace OpenSim.Framework.Console
38 /// <remarks> 38 /// <remarks>
39 /// Currently subject to change. If you use this, be prepared to change your code when this class changes. 39 /// Currently subject to change. If you use this, be prepared to change your code when this class changes.
40 /// </remarks> 40 /// </remarks>
41 public class ConsoleTable 41 public class ConsoleDisplayTable
42 { 42 {
43 /// <summary> 43 /// <summary>
44 /// Default number of spaces between table columns. 44 /// Default number of spaces between table columns.
@@ -65,7 +65,7 @@ namespace OpenSim.Framework.Console
65 /// </summary> 65 /// </summary>
66 public int TableSpacing { get; set; } 66 public int TableSpacing { get; set; }
67 67
68 public ConsoleTable() 68 public ConsoleDisplayTable()
69 { 69 {
70 TableSpacing = DefaultTableSpacing; 70 TableSpacing = DefaultTableSpacing;
71 Columns = new List<ConsoleTableColumn>(); 71 Columns = new List<ConsoleTableColumn>();