Ticket #1085: mythtv_mythfrontend.diff

File mythtv_mythfrontend.diff, 1.6 KB (added by Stefan Frank <stoffel>, 20 years ago)

Patch to playbackbox.cpp

  • programs/mythfrontend/playbackbox.cpp

     
    38383838            else if (dispGroup == "LiveTV")
    38393839                dispGroup = tr("LiveTV");
    38403840
    3841             groups += QString::fromUtf8(QString("%1 [%2 %3]").arg(dispGroup)
    3842                                                 .arg(items).arg(itemStr));
     3841            groups += QString("%1 [%2 %3]").arg(dispGroup)
     3842                              .arg(items).arg(itemStr);
    38433843
    38443844            recGroupType[query.value(0).toString()] = "recgroup";
    38453845
     
    38803880
    38813881            if (!recGroupType.contains(dispGroup))
    38823882            {
    3883                 groups += QString::fromUtf8(QString("%1 [%2 %3]").arg(dispGroup)
    3884                                                     .arg(items).arg(itemStr));
     3883                groups += QString("%1 [%2 %3]").arg(dispGroup)
     3884                                  .arg(items).arg(itemStr);
    38853885
    38863886                recGroupType[dispGroup] = "category";
    38873887            }
     
    40824082            else if (dispGroup == "LiveTV")
    40834083                dispGroup = tr("LiveTV");
    40844084
    4085             groups += QString::fromUtf8(QString("%1 [%2 %3]")
    4086                                         .arg(dispGroup)
    4087                                         .arg(query.value(1).toInt())
    4088                                         .arg(itemStr));
     4085            groups += QString("%1 [%2 %3]").arg(dispGroup)
     4086                              .arg(query.value(1).toInt()).arg(itemStr);
    40894087        }
    40904088    }
    40914089    groups.sort();