Small fixes for the last PR

This commit is contained in:
fourtf
2018-07-05 22:55:06 +02:00
parent 086ae010b1
commit 314c15bb87
4 changed files with 9 additions and 13 deletions
+5 -7
View File
@@ -20,15 +20,13 @@ LogsPopup::LogsPopup()
void LogsPopup::initLayout()
{
{
QVBoxLayout *layout = new QVBoxLayout(this);
layout->setMargin(0);
QVBoxLayout *layout = new QVBoxLayout(this);
layout->setMargin(0);
this->channelView_ = new ChannelView(this);
layout->addWidget(this->channelView_);
this->channelView_ = new ChannelView(this);
layout->addWidget(this->channelView_);
this->setLayout(layout);
}
this->setLayout(layout);
}
void LogsPopup::setInfo(ChannelPtr channel, QString userName)