Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#10319 closed Bug Report - General (fixed)

suspected problem in schedduleeditor

Reported by: Mark Spieth Owned by:
Priority: minor Milestone: 0.25
Component: MythTV - General Version: Unspecified
Severity: medium Keywords:
Cc: Ticket locked: no

Description (last modified by Mark Spieth)

this just looks wrong for the parameters and previous functionality

should be

--- a/mythtv/programs/mythfrontend/scheduleeditor.cpp
+++ b/mythtv/programs/mythfrontend/scheduleeditor.cpp
@@ -566,8 +566,8 @@ void SchedOptEditor::Load()
     for (uint i = 0; i < inputids.size(); ++i)
     {
         new MythUIButtonListItem(m_inputList, tr("Prefer input %1")
-                                 .arg(CardUtil::GetDisplayName(inputids[i]))
-                                 .arg(inputids[i]));
+                                 .arg(CardUtil::GetDisplayName(inputids[i])),
+                                 inputids[i]);
     }
 
     m_inputList->SetValueByData(m_recordingRule->m_prefInput);

inline due to its simplicity. If Im wrong just disregard.

Change History (3)

comment:1 Changed 12 years ago by Mark Spieth

Description: modified (diff)

comment:2 Changed 12 years ago by Github

Milestone: unknown0.26
Resolution: fixed
Status: newclosed

Fix a fat fingers error in commit f7691087 .

Thanks to Mark Spieth for spotting it.

Fixes #10319

Branch: master Changeset: 16850cc7c8b522e7897a96e6aa3df7d831ec468b

comment:3 Changed 12 years ago by Raymond Wagner

Milestone: 0.260.25
Note: See TracTickets for help on using tickets.