I want to get a random pair with number n
from my QHash.
Now I do it this way:
QHash<QString,QString>::iterator iterator = dictionary.begin();
iterator+= n;
question->setText(iterator.key());
But this seems just ridiculous... There must be a normal way. Can you help me please? I've read the whole entire man-page for QHash already