3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 05:35:37 +02:00

Use an inner widget for the dock.

This commit is contained in:
Andrzej Kapolka 2014-03-14 10:48:57 -07:00
parent b721533f0b
commit a7d35944cc
2 changed files with 8 additions and 5 deletions

View file

@ -45,7 +45,7 @@
<translation type="unfinished"></translation>
</message>
<message numerus="yes">
<location filename="src/ui/ChatWindow.cpp" line="123"/>
<location filename="src/ui/ChatWindow.cpp" line="126"/>
<source>day</source>
<translation>
<numerusform>%n day</numerusform>
@ -53,7 +53,7 @@
</translation>
</message>
<message numerus="yes">
<location filename="src/ui/ChatWindow.cpp" line="123"/>
<location filename="src/ui/ChatWindow.cpp" line="126"/>
<source>hour</source>
<translation>
<numerusform>%n hour</numerusform>
@ -61,7 +61,7 @@
</translation>
</message>
<message numerus="yes">
<location filename="src/ui/ChatWindow.cpp" line="123"/>
<location filename="src/ui/ChatWindow.cpp" line="126"/>
<source>minute</source>
<translation>
<numerusform>%n minute</numerusform>
@ -76,7 +76,7 @@
</translation>
</message>
<message>
<location filename="src/ui/ChatWindow.cpp" line="178"/>
<location filename="src/ui/ChatWindow.cpp" line="181"/>
<source>%1 online now:</source>
<translation type="unfinished"></translation>
</message>

View file

@ -31,7 +31,10 @@ ChatWindow::ChatWindow() :
ui(new Ui::ChatWindow),
numMessagesAfterLastTimeStamp(0)
{
ui->setupUi(this);
QWidget* widget = new QWidget();
setWidget(widget);
ui->setupUi(widget);
FlowLayout* flowLayout = new FlowLayout(0, 4, 4);
ui->usersWidget->setLayout(flowLayout);