Try:
Qt Code:
  1. CreatorTab::CreatorTab(const QFileInfo &fileInfo, QWidget *parent)
  2. : QWidget(parent)
  3. {
  4. sortingBox = new SortingBox( this );
  5. QHBoxLayout *mainLayout = new QHBoxLayout( this );
  6. mainLayout->addWidget(sortingBox);
  7. mainLayout->addStretch(1);
  8. setLayout(mainLayout);
  9. }
To copy to clipboard, switch view to plain text mode