qt qchar to char

QChar qLetter = 'a';
char letter = qLetter.toLatin1();
Sorann