Cosmetic changes

This commit is contained in:
kamel5 2019-06-16 15:26:23 +02:00
parent 3cce1d2ead
commit 0a931b97dc
1 changed files with 2 additions and 3 deletions

View File

@ -808,11 +808,10 @@ int cRecMenuSearchTimerEdit::SplitChannelGroups(std::vector<std::string> *channe
std::string a = *it;
splitstring s(a.c_str());
std::vector<std::string> value = s.split('|', 0);
dsyslog ("%s %s %d %s\n", __FILE__, __func__, __LINE__, s.c_str());
std::vector<std::string>::iterator ito = value.begin();
channelgroups->push_back(*ito);
std::string b = *ito;
if (b.compare(channelGroup) == 0)
std::string b = *ito;
if (b.compare(channelGroup) == 0)
j = i;
i++;
}