qt can 27t use 5e operator on qchar

Solutions on MaxInterview for qt can 27t use 5e operator on qchar by the best coders in the world

showing results for - "qt can 27t use 5e operator on qchar"
Nick
23 Nov 2018
1// ^ operator is not defined for QChar, you have to convert it to char first
2QChar a = 'x';
3char b = a.toLatin1();
4
5char c = b ^ 0x0f;