06a1a754bf
- Update xineliboutput XKeySym.Pause key in example remote.conf. ("space" instead of "Space") - Add multimedia/vdr-plugin-extrecmenu 1.2.2 to vdr-plugins metaport. - Update multimedia/vdr-plugin-skinenigmang to 0.1.2s20120606 git snapshot. - Update www/vdr-plugin-live to 0.2.0s20120325 git snapshot. - Bump PORTREVISION for all other plugins and add api fixes where necessary. - Add HISTORY to PORTDOCS for most plugins. (those that have it) - Remove shlib major versions from LIB_DEPENDS to pet portlint.
14 lines
423 B
C
14 lines
423 B
C
--- menu_searchresults.c.orig
|
|
+++ menu_searchresults.c
|
|
@@ -815,7 +815,11 @@ eOSState cMenuSearchResultsForRecs::Play
|
|
{
|
|
cRecording *recording = GetRecording(ri);
|
|
if (recording) {
|
|
+#if APIVERSNUM < 10728
|
|
cReplayControl::SetRecording(recording->FileName(), recording->Title());
|
|
+#else
|
|
+ cReplayControl::SetRecording(recording->FileName());
|
|
+#endif
|
|
return osReplay;
|
|
}
|
|
}
|