When debugging and looking at a vector in variable window the indexes of this vector is alphabetically sorted not numerically sorted. Indexes 0 to 12 becomes: 0, 1, 10, 11, 12, 2, 3, 4, 5, 6, 7, 8, 9 Reproducible: Always Actual Results: 0, 1, 10, 11, 12, 2, 3, 4, 5, 6, 7, 8, 9 Expected Results: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
should be fixed by using natural sorting and/or revising the patch that added the sorting to limit it to the first level and not reorder child items.
fixed now *** This bug has been marked as a duplicate of bug 119929 ***