Ticket #2594: multiselect_mythplugins_r12328.patch

File multiselect_mythplugins_r12328.patch, 1.4 KB (added by mythtv@…, 17 years ago)

Patch refresh against head revision 12328

  • mytharchive/mytharchive/archivesettings.cpp

     
    121121    gc->setLabel(QObject::tr("Main Menu Aspect Ratio"));
    122122    gc->addSelection("4:3");
    123123    gc->addSelection("16:9");
    124     gc->setValue(1);
     124    gc->setCurrent(1);
    125125    gc->setHelpText(QObject::tr("Aspect ratio to use when creating the main menu."));
    126126    return gc;
    127127};
     
    133133    gc->addSelection("4:3");
    134134    gc->addSelection("16:9");
    135135    gc->addSelection("Video");
    136     gc->setValue(2);
     136    gc->setCurrent(2);
    137137    gc->setHelpText(QObject::tr("Aspect ratio to use when creating the chapter menu. "
    138138            "Video means use the same aspect ratio as the associated video."));
    139139    return gc;
  • mythgame/mythgame/gamesettings.cpp

     
    156156        {
    157157            addSelection(GameTypeList[i].nameStr, GameTypeList[i].idStr);
    158158        }
    159         setValue(0);
     159        setCurrent(0);
    160160        setHelpText(QObject::tr("Type of Game/Emulator. Mostly for informational purposes and has little effect on the function of your system."));
    161161    };
    162162};