Refactoring: add some button icons
This commit is contained in:
@@ -63,7 +63,7 @@ namespace StructureHelperCommon.Models.Forces
|
||||
return newItem;
|
||||
}
|
||||
/// <inheritdoc/>
|
||||
public IForceCombinationList GetCombinations()
|
||||
public IForceCombinationList GetCombination()
|
||||
{
|
||||
var result = Clone() as IForceCombinationList;
|
||||
result.DesignForces.Clear();
|
||||
@@ -84,5 +84,14 @@ namespace StructureHelperCommon.Models.Forces
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public List<IForceCombinationList> GetCombinations()
|
||||
{
|
||||
var listResult = new List<IForceCombinationList>
|
||||
{
|
||||
GetCombination()
|
||||
};
|
||||
return listResult;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user