I have a QMessageBox,
Qt Code:
  1. MessageBox loadMsgBox;
  2. loadMsgBox.setText("Loading file...");
  3. loadMsgBox.setWindowTitle(" ");
  4. loadMsgBox.setIconPixmap(QPixmap("./icons/icon_loading.gif"));
  5. loadMsgBox.exec();
To copy to clipboard, switch view to plain text mode 

I want to set the main icon on the title bar, by default it shows a white rectangle. How do i change that?