Object and Property name changes for consistency

This commit is contained in:
Rich
2008-03-27 19:39:10 +00:00
parent 7caa952bc3
commit c0511c990d
19 changed files with 2229 additions and 1407 deletions

View File

@@ -65,12 +65,12 @@ namespace Volian.Controls.Library
public static string TabFormat(StepItem myDisplayItem)
{
string format = string.Empty;
if (myDisplayItem.MyItem != null)
if (myDisplayItem.MyItemInfo != null)
{
int typ = (int)myDisplayItem.MyItem.MyContent.Type;
int typ = (int)myDisplayItem.MyItemInfo.MyContent.Type;
if (typ >= 20000)
{
if (myDisplayItem.RNOLevel > 0 && IsRNO(myDisplayItem.MyItem)) return "";
if (myDisplayItem.RNOLevel > 0 && IsRNO(myDisplayItem.MyItemInfo)) return "";
// Step 1: Get TabFormat from Format
format = _TabFormats[typ % 10000];
if (format == "<seq>")