~ubuntu-branches/ubuntu/saucy/minitube/saucy-proposed

« back to all changes in this revision

Viewing changes to src/channelsuggest.cpp

  • Committer: Package Import Robot
  • Author(s): Jakob Haufe
  • Date: 2012-09-29 02:43:53 UTC
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: package-import@ubuntu.com-20120929024353-fxbrlvqxrlu6cwld
Tags: upstream-1.9
ImportĀ upstreamĀ versionĀ 1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    while ((pos = re.indexIn(html, pos)) != -1) {
36
36
        // qDebug() << re.cap(0) << re.cap(1);
37
37
        QString choice = re.cap(1);
38
 
        if (!choices.contains(choice)) {
 
38
        if (!choices.contains(choice, Qt::CaseInsensitive)) {
39
39
            choices << choice;
40
40
            if (choices.size() == 10) break;
41
41
        }