From f2f34a4068515ca425c98be38c6e128813310bb6 Mon Sep 17 00:00:00 2001 From: fourtf Date: Mon, 11 Jun 2018 15:31:27 +0200 Subject: [PATCH] fixed building --- src/widgets/selectchanneldialog.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/widgets/selectchanneldialog.cpp b/src/widgets/selectchanneldialog.cpp index 712e6c9a9..ab10de3c2 100644 --- a/src/widgets/selectchanneldialog.cpp +++ b/src/widgets/selectchanneldialog.cpp @@ -37,7 +37,8 @@ SelectChannelDialog::SelectChannelDialog() auto channel_btn = vbox.emplace("Channel").assign(&this->ui_.twitch.channel); auto channel_lbl = vbox.emplace("Join a twitch channel by its name.").hidden(); channel_lbl->setWordWrap(true); - auto channel_edit = vbox.emplace().hidden().assign(&this->ui_.twitch.channelName); + auto channel_edit = + vbox.emplace().hidden().assign(&this->ui_.twitch.channelName); QObject::connect(*channel_btn, &QRadioButton::toggled, [=](bool enabled) mutable { if (enabled) { @@ -125,8 +126,8 @@ SelectChannelDialog::SelectChannelDialog() } this->setScaleIndependantSize(300, 210); - this->ui.notebook->selectIndex(TAB_TWITCH); - this->ui.twitch.channel->setFocus(); + this->ui_.notebook->selectIndex(TAB_TWITCH); + this->ui_.twitch.channel->setFocus(); // Shortcuts auto *shortcut_ok = new QShortcut(QKeySequence("Return"), this);