SIL.FieldWorks.Common.RootSites.CollectorEnv.IncrementPropCount C# (CSharp) Method

IncrementPropCount() private method

Increments the property count for the given tag.
private IncrementPropCount ( int tag ) : void
tag int The tag.
return void
		private void IncrementPropCount(int tag)
		{
			if (m_stack.Count == 0)
				m_cpropPrev.Increment(tag);
			else
			{
				StackItem top = m_stack[m_stack.Count - 1];
				top.m_cpropPrev.Increment(tag);
			}
		}