Ticket #2594: multiselect_mythplugins.patch

File multiselect_mythplugins.patch, 1.4 KB (added by mythtv@…, 18 years ago)
  • 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

     
    141141        {
    142142            addSelection(GameTypeList[i].nameStr, GameTypeList[i].idStr);
    143143        }
    144         setValue(0);
     144        setCurrent(0);
    145145        setHelpText(QObject::tr("Type of Game/Emulator. Mostly for informational purposes and has little effect on the function of your system."));
    146146    };
    147147};