Hi. I've got a problem. I have a piece of code:
Qt Code:
  1. int ret = QMessageBox::Information(this, tr("Speed Units Converter"),
  2. tr("You can't convert value to the same unit"),
  3. QMessageBox::Ok | QMessageBox::Default);
  4. if (ret == QMessageBox::Ok)
  5. {
  6. return false;
  7. }
To copy to clipboard, switch view to plain text mode 

And I reach error that Information cannot be used as a function
Regards