Qt4.4.1
I am facing a problem of missing close button on QDialog on Mac. Buttons are visible and working on windows but not on Mac.

I am creating a QDialog as follows:
Qt Code:
  1. FormHtmlDisplay newFeatures(this);
  2. newFeatures.setFixedSize(200,50);
  3. newFeatures.exec();
To copy to clipboard, switch view to plain text mode 

Constructor for FormHtmlDisplay is as follows:
Qt Code:
  1. FormHtmlDisplay::FormHtmlDisplay(QWidget *parent):QDialog(parent)
  2. {
  3. init();
  4. }
To copy to clipboard, switch view to plain text mode 

I have not changed any properties in designer for QDialog in designer for FormHtmlDisplay class. Can some body help me why it is not showing close button on top left on Mac?