diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2007-04-17 13:36:08 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2007-04-17 13:36:08 +0000 |
commit | f551bfd130cfd91a7c7d69fef09bf4104c6dd2e4 (patch) | |
tree | dcd726b60d5470578bae948767bbdccb4a3fa46a /media-plugins/vdr-vcd/files | |
parent | Stable on sparc wrt #174808 (diff) | |
download | gentoo-2-f551bfd130cfd91a7c7d69fef09bf4104c6dd2e4.tar.gz gentoo-2-f551bfd130cfd91a7c7d69fef09bf4104c6dd2e4.tar.bz2 gentoo-2-f551bfd130cfd91a7c7d69fef09bf4104c6dd2e4.zip |
Make it compile with vdr-1.5
(Portage version: 2.1.2.4)
Diffstat (limited to 'media-plugins/vdr-vcd/files')
-rw-r--r-- | media-plugins/vdr-vcd/files/vdr-vcd-0.7-vdr-1.5.diff | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-plugins/vdr-vcd/files/vdr-vcd-0.7-vdr-1.5.diff b/media-plugins/vdr-vcd/files/vdr-vcd-0.7-vdr-1.5.diff new file mode 100644 index 000000000000..1daefefd2431 --- /dev/null +++ b/media-plugins/vdr-vcd/files/vdr-vcd-0.7-vdr-1.5.diff @@ -0,0 +1,33 @@ +diff -NaurwB vcd-0.7-1.4.5/menucontrol.c vcd-0.7-1.5.0/menucontrol.c +--- vcd-0.7-1.4.5/menucontrol.c 2006-07-05 15:09:23.000000000 +0200 ++++ vcd-0.7-1.5.0/menucontrol.c 2007-01-19 11:10:51.000000000 +0100 +@@ -63,7 +63,8 @@ + { + if (visible) { + delete displayReplay; +- needsFastResponse = visible = false; ++ visible = false; ++ SetNeedsFastResponse(visible); + modeOnly = false; + } + } +@@ -170,7 +171,8 @@ + { + if (visible) { + delete displayReplay; +- needsFastResponse = visible = false; ++ visible = false; ++ SetNeedsFastResponse(visible); + modeOnly = false; + lastPlay = lastForward = false; + lastSpeed = -1; +@@ -210,7 +212,8 @@ + if (GetIndex(Current, Total) && Total > 0) { + if (!visible) { + displayReplay = Skins.Current()->DisplayReplay(modeOnly); +- needsFastResponse = visible = true; ++ visible = true; ++ SetNeedsFastResponse(visible); + } + if (Initial) { + lastCurrent = lastTotal = -1; |