Kaydet (Commit) 6e0c9e4a authored tarafından Pedro Giffuni's avatar Pedro Giffuni

i121681 - Wrong sorting of values in Calc

üst 749bb724
...@@ -309,7 +309,7 @@ void VDataSeries::doSortByXValues() ...@@ -309,7 +309,7 @@ void VDataSeries::doSortByXValues()
} }
//do sort //do sort
std::sort( aTmp.begin(), aTmp.end(), lcl_LessXOfPoint() ); std::stable_sort( aTmp.begin(), aTmp.end(), lcl_LessXOfPoint() );
//fill the sorted points back to the mambers //fill the sorted points back to the mambers
m_aValues_X.Doubles.realloc( m_nPointCount ); m_aValues_X.Doubles.realloc( m_nPointCount );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment