Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/SIL.LCModel/DomainImpl/OverridesLing_Lex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2912,7 +2912,8 @@ public bool HasMoreThanOneSense
/// <summary>
/// Return all allomorphs of the entry: first the lexeme form, then the alternate forms.
/// </summary>
public IMoForm[] AllAllomorphs
[VirtualProperty(CellarPropertyType.ReferenceSequence, "MoForm")]
public IEnumerable<IMoForm> AllAllomorphs
{
get
{
Expand Down
2 changes: 1 addition & 1 deletion src/SIL.LCModel/InterfaceAdditions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ List<IMoMorphType> MorphTypes
}

/// <summary/>
IMoForm[] AllAllomorphs
IEnumerable<IMoForm> AllAllomorphs
{
get;
}
Expand Down
Loading