diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8scan.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx index 3134c3bc2ed1..623100c4f61a 100644 --- a/sw/source/filter/ww8/ww8scan.cxx +++ b/sw/source/filter/ww8/ww8scan.cxx @@ -2701,7 +2701,7 @@ WW8PLCFx_Fc_FKP::WW8Fkp::WW8Fkp(const WW8Fib& rFib, SvStream* pSt, maEntries.emplace_back(Get_Long(pStart)); //we expect them sorted, but it appears possible for them to arrive unsorted - std::sort(maEntries.begin(), maEntries.end()); + std::stable_sort(maEntries.begin(), maEntries.end()); mnIdx = 0; |