Skip to content

Commit

Permalink
Fix clazy warning in Channel Group setting
Browse files Browse the repository at this point in the history
Refs #616
  • Loading branch information
kmdewaal committed Aug 13, 2022
1 parent c370f51 commit 0c25abf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -4854,8 +4854,9 @@ void ChannelGroupSetting::LoadChannelGroup()
{
QString group = m_groupSelection->getValue();
int groupId = ChannelGroup::GetChannelGroupId(group);
LOG(VB_GENERAL, LOG_INFO, QString("ChannelGroupSetting::%1 value:%2 groupId:%3")
.arg(__func__).arg(group).arg(groupId));
LOG(VB_GENERAL, LOG_INFO,
QString("ChannelGroupSetting::LoadChannelGroup group:%1 groupId:%2")
.arg(group).arg(groupId));
}

// Set the old checkboxes from the previously selected channel group invisible
Expand Down

0 comments on commit 0c25abf

Please sign in to comment.