I have a basic program:

Qt Code:
  1. char chTest;
  2. chTest = 'a';
  3. qDebug() << chTest;
To copy to clipboard, switch view to plain text mode 

However if I use "a", it spits out an error at me - 47: error: invalid conversion from 'const char*' to 'char'

What does that error mean? And why does it occur?