Hello,
If you have everything text oriented, do this:
Instead of :
int nbQuestion;
in >> nbQuestion;
int nbQuestion;
in >> nbQuestion;
To copy to clipboard, switch view to plain text mode
do this:
int nbQuestion = 0;
in >> strNumOfQuestions;
nbQuestion = strNumOfQuestions.toInt();
int nbQuestion = 0;
QString strNumOfQuestions;
in >> strNumOfQuestions;
nbQuestion = strNumOfQuestions.toInt();
To copy to clipboard, switch view to plain text mode
Do this for every integer you read from the stream.
Regards
Bookmarks