ok, so I have two QStringLists ,one of dates, and one of numbers.. but each number matches up to a specific date...

i.e

06/10/10 2
04/10/10 1

but i want to sort it so the list is in chronological order but the numbers remain with their respective dates

i.e.

04/10/10 1
06/10/10 2

right now, i am breaking the dates apart from their numbers and sorting the dates just using the .sort function.. but i cannot figure out how to sort the dates and maintain their respective numbers..

TIA