SIL.FieldWorks.XWorks.MorphologyEditor.InflAffixTemplateControl.FindSlotNameOfMsa C# (CSharp) Method

FindSlotNameOfMsa() private method

private FindSlotNameOfMsa ( int hvoSlot ) : string
hvoSlot int
return string
		private string FindSlotNameOfMsa(int hvoSlot)
		{
#if WantWWStuff // TODO: AndyB(RandyR): Fix this, if it is still needed.
			IMoInflAffixSlot slot = new SIL.FieldWorks.FDO.Ling.MoInflAffixSlot(Cache, hvoSlot);
			List<int> listMsaHvos = new List<int>(slot.AffixesRS.HvoArray);
			int index = listMsaHvos.IndexOf(m_hvo);
			if (index >= 0)
				return slot.Name.AnalysisDefaultWritingSystem;
#endif
			return null;
		}
#endif