The output just doesn't get flushed, so add std::endl (or std::flush)
Qt Code:
  1. std::cout << "something" << std::endl;
To copy to clipboard, switch view to plain text mode 
or simply use qDebug()
Qt Code:
  1. qDebug() << "something";
To copy to clipboard, switch view to plain text mode