changed emplace to push_back

This commit is contained in:
fourtf
2018-06-13 13:29:11 +02:00
parent ae4cdbd5ab
commit 57b21cffb3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ ChannelView::ChannelView(BaseWidget *parent)
this->setMouseTracking(true);
this->connections_.emplace_back(app->settings->wordFlagsChanged.connect([this] {
this->connections_.push_back(app->settings->wordFlagsChanged.connect([this] {
this->layoutMessages();
this->update();
}));