Hello, All !

I have to process 4 different dialogs in QStackedWidget.
I do this
Qt Code:
  1. wsForm = new WsPropertiesForm (0, false, 0);
  2. QSize cwSize (wsForm->maximumSize ());
  3. rForm = new RasterPropertiesForm (false, 0);
  4. dForm = new DocumentPropertiesForm (0, false, 0);
  5. lForm = new LayerPropertiesForm (0, false, 0);
  6. ...
  7. int wsIndex = this->ResultsStackedW->addWidget (wsForm);
  8. int rIndex = this->ResultsStackedW->addWidget (rForm);
  9. int dIndex = this->ResultsStackedW->addWidget (dForm);
  10. int lIndex = this->ResultsStackedW->addWidget (lForm);
  11. this->ResultsStackedW->setCurrentIndex (0);
  12. ...
To copy to clipboard, switch view to plain text mode 
In form constructor. When this form is shown, I see all these widgets simultaneously. Where is error ? I have to see these forms code ?