Ticket #2594: multiselect_mythplugins_r11817.patch

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

Patch refresh against head revision 11817

  • mytharchive/mytharchive/archivesettings.cpp

     
    110110    gc->setLabel(QObject::tr("Main Menu Aspect Ratio"));
    111111    gc->addSelection("4:3");
    112112    gc->addSelection("16:9");
    113     gc->setValue(1);
     113    gc->setCurrent(1);
    114114    gc->setHelpText(QObject::tr("Aspect ratio to use when creating the main menu."));
    115115    return gc;
    116116};
     
    122122    gc->addSelection("4:3");
    123123    gc->addSelection("16:9");
    124124    gc->addSelection("Video");
    125     gc->setValue(2);
     125    gc->setCurrent(2);
    126126    gc->setHelpText(QObject::tr("Aspect ratio to use when creating the chapter menu. "
    127127            "Video means use the same aspect ratio as the associated video."));
    128128    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};