Custom Query (13624 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 13624)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#11094 fixed QT5 patches for removed defines Daniel Thor Kristjansson <danielk@…> Gary Buhrmaster <gary.buhrmaster@…>
Description

QT5 is in beta, and bleeding edge distros are likely to provide it as an alternative in their next cycle or two, although I would not expect it to be the default for quite some time. Regardless, one of the changes in QT5 is the removal of the Q_WS_<OSTYPE> defines, requiring one to use the Q_OS_<OSTYPE> defines (existing since QT 3.<something>), and already used in some parts of the MythTV code. This patch changes the Q_WS_ defines to Q_OS_ defines, and should be safe for any supported QT version, and prepares MythTV for the inevitable QT5 default on some distro at some future date (probably a few years from now).

#10746 fixed Typo in programinfo.cpp affecting themes David Engel <dengel@…> mayfields@…
Description

There is a typo in programinfo.cpp where recordinggroup is mis-spelled. The particular spelling (recordingggroup) only occurs once in the code base. This means themes have no data populated when including this field. A workaround is to alter theme but this is not ideal as most themes include this field spelled as recordinggroup.

Present in master as well as 0.25-fixes.

Patch as follows:

--- a/libs/libmyth/programinfo.cpp	2012-04-24 17:35:58.000000000 +0930
+++ b/libs/libmyth/programinfo.cpp	2012-05-23 09:28:28.282810582 +0930
@@ -1515,7 +1515,7 @@
 
     progMap["recpriority"] = recpriority;
     progMap["recpriority2"] = recpriority2;
-    progMap["recordingggroup"] = (recgroup == "Default")
+    progMap["recordinggroup"] = (recgroup == "Default")
                                             ? QObject::tr("Default") : recgroup;
     progMap["playgroup"] = playgroup;
 
#10854 fixed Watch List should not show up in Deleted group David Engel <dengel@…> John Veness <John.Veness.mythtv@…>
Description

In Watch Recordings, picking the Deleted group, there should not be a Watch List section appearing. A Watch List doesn't make sense for Deleted recordings.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.