Hi,

This is the code that I'm using:
Qt Code:
  1. m_pqTabWidget = new QTabWidget(m_pqParametersDock);
  2. m_pqParametersDock->setWidget(m_pqTabWidget);
  3.  
  4. m_pqScrollAreaConfig = new QScrollArea();
  5. m_pqScrollAreaConfig->setWidgetResizable(false);
  6. m_pqTabWidget->addTab(m_pqScrollAreaConfiguracio,QString("Configuration"));
To copy to clipboard, switch view to plain text mode 

Have I to create a QWidget as the internal Widget of the QTabWidget, then add a layout to it where I will add the QScrollArea?

Thanks,