http://s4.subirimagenes.com/otros/3508586sash.jpg

I'm learning Qt and trying to code a multiplayer card game and I have some doubts managing the geometry of widgets.
In the image above there are the scene, the QListWidget with the players, and a QTextBrowser for the chat and I want the QListWidget not to take its sizeHint, so the QTextbrowser expands to the left, how could I do that?.

Qt Code:
  1. QHBoxLayout *layout = new QHBoxLayout;
  2. layout->addWidget(listWidget);
  3. layout->addWidget(textBrowser);
  4.  
  5. QVBoxLayout *layout2 = new QVBoxLayout;
  6. layout2->addWidget(view);
  7. layout2->addLayout(layout);
  8.  
  9. QWidget *window = new QWidget;
  10. window->setLayout(layout2);
To copy to clipboard, switch view to plain text mode 

Thanks, and sorry my bad english.