Ticket #5907: mythtv-5907-use_bookmark_rather_than_saved_position_in_player.patch

File mythtv-5907-use_bookmark_rather_than_saved_position_in_player.patch, 1.6 KB (added by sphery <mtdean@…>, 17 years ago)

patch for player

  • mythtv/programs/mythfrontend/globalsettings.cpp

     
    20112011    gc->setLabel(QObject::tr("Alternate clear and save bookmark"));
    20122012    gc->setValue(true);
    20132013    gc->setHelpText(QObject::tr("During playback the Select key "
    2014                     "(Enter or Space) will alternate between \"Position "
    2015                     "Saved\" and \"Position Cleared\". If disabled, the "
     2014                    "(Enter or Space) will alternate between \"Bookmark "
     2015                    "Saved\" and \"Bookmark Cleared\". If disabled, the "
    20162016                    "Select key will save the current position for each "
    20172017                    "keypress."));
    20182018    return gc;
  • mythtv/libs/libmythtv/NuppelVideoPlayer.cpp

     
    41184118
    41194119    if (osd)
    41204120    {
    4121         osd->SetSettingsText(QObject::tr("Position Saved"), 1);
     4121        osd->SetSettingsText(QObject::tr("Bookmark Saved"), 1);
    41224122
    41234123        struct StatusPosInfo posInfo;
    41244124        calcSliderPos(posInfo);
     
    41354135        SetDVDBookmark(0);
    41364136    else
    41374137        m_playbackinfo->SetBookmark(0);
    4138     osd->SetSettingsText(QObject::tr("Position Cleared"), 1);
     4138    osd->SetSettingsText(QObject::tr("Bookmark Cleared"), 1);
    41394139}
    41404140
    41414141long long NuppelVideoPlayer::GetBookmark(void) const