Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Src/xWorks/RecordList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ protected override bool ListAlreadySorted
{
get
{
return !(m_owningObject as ICmPossibilityList).IsSorted;
return (m_owningObject as ICmPossibilityList).IsSorted;
}
}

Expand Down Expand Up @@ -2942,7 +2942,7 @@ protected virtual int GetNewCurrentIndex(ArrayList newSortedObjects, int hvoCurr
/// <param name="updateAndNotify">If true: Gui and properties should be updated, and notifications sent.</param>
protected void SortList(ArrayList newSortedObjects, bool updateAndNotify, ProgressState progress)
{
if (m_sorter != null && !ListAlreadySorted)
if (m_sorter != null)
{
m_sorter.DataAccess = m_publisher;
if (updateAndNotify && m_sorter is IReportsSortProgress)
Expand Down
Loading