msvc: updated code for higher warning level

This commit is contained in:
itsmattkc
2020-01-24 12:00:55 +11:00
parent 66ad2749af
commit 149d125e39
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -37,8 +37,8 @@ ExportAudioTab::ExportAudioTab(QWidget* parent) :
channel_layout_combobox_ = new QComboBox();
channel_layouts_ = Core::SupportedChannelLayouts();
foreach (const uint64_t& layout, channel_layouts_) {
channel_layout_combobox_->addItem(Core::ChannelLayoutToString(layout), QVariant::fromValue(layout));
foreach (const uint64_t& ch_layout, channel_layouts_) {
channel_layout_combobox_->addItem(Core::ChannelLayoutToString(ch_layout), QVariant::fromValue(layout));
}
layout->addWidget(channel_layout_combobox_, row, 1);