diff options
author | Justin Clark-Casey (justincc) | 2012-05-23 02:37:38 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-05-23 02:37:38 +0100 |
commit | 2222d979cc723ee2f3bad92ffe4991d074b2403a (patch) | |
tree | e9d94544a112f85095500c1719fbb78358834c7a | |
parent | Add missing Y co-ord in "show region" console command information (diff) | |
download | opensim-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
-rw-r--r-- | OpenSim/Framework/Console/ConsoleDisplayTable.cs (renamed from OpenSim/Framework/Console/ConsoleTable.cs) | 4 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Attachments/AttachmentsCommandModule.cs | 2 |
2 files changed, 3 insertions, 3 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>(); |
diff --git a/OpenSim/Region/OptionalModules/Avatar/Attachments/AttachmentsCommandModule.cs b/OpenSim/Region/OptionalModules/Avatar/Attachments/AttachmentsCommandModule.cs index a95514c..df32a1d 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Attachments/AttachmentsCommandModule.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Attachments/AttachmentsCommandModule.cs | |||
@@ -145,7 +145,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
145 | { | 145 | { |
146 | sb.AppendFormat("Attachments for {0}\n", sp.Name); | 146 | sb.AppendFormat("Attachments for {0}\n", sp.Name); |
147 | 147 | ||
148 | ConsoleTable ct = new ConsoleTable() { Indent = 2 }; | 148 | ConsoleDisplayTable ct = new ConsoleDisplayTable() { Indent = 2 }; |
149 | ct.Columns.Add(new ConsoleTableColumn("Attachment Name", 36)); | 149 | ct.Columns.Add(new ConsoleTableColumn("Attachment Name", 36)); |
150 | ct.Columns.Add(new ConsoleTableColumn("Local ID", 10)); | 150 | ct.Columns.Add(new ConsoleTableColumn("Local ID", 10)); |
151 | ct.Columns.Add(new ConsoleTableColumn("Item ID", 36)); | 151 | ct.Columns.Add(new ConsoleTableColumn("Item ID", 36)); |