summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-05-23 10:35:59 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-05-23 10:35:59 +0200
commita3d32f58620f0ebfd4f9eb5bf3c6d5a06133f68d (patch)
treea02c16feeb6ac2cd6ac747d29eb64028a794156b
parente912e48282b5937f88c4a51cc89aa4247d849084 (diff)
downloadvdr-a3d32f58620f0ebfd4f9eb5bf3c6d5a06133f68d.tar.gz
vdr-a3d32f58620f0ebfd4f9eb5bf3c6d5a06133f68d.tar.bz2
Added a missing cStatus::MsgOsdClear() to cDisplayChannel::~cDisplayChannel()
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY2
-rw-r--r--menu.c3
3 files changed, 5 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 2fb3a29d..c7f35d75 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -520,6 +520,7 @@ Oliver Endriss <o.endriss@gmx.de>
for suggesting to change the default "Lifetime" to 99
for pointing out that the LNB power needs to be explicitly turned on at startup,
because newer drivers don't do this any more
+ for adding a missing cStatus::MsgOsdClear() to cDisplayChannel::~cDisplayChannel()
Reinhard Walter Buchner <rw.buchner@freenet.de>
for adding some satellites to 'sources.conf'
diff --git a/HISTORY b/HISTORY
index da39e8e0..16d1e3c8 100644
--- a/HISTORY
+++ b/HISTORY
@@ -2831,3 +2831,5 @@ Video Disk Recorder Revision History
It now also has a SetText() function that can be used to dynamically set the text
in an already existing cMenuText (both suggested by Stefan Huelswitt).
- Added play mode pmVideoOnly (thanks to Marcel Wiesweg).
+- Added a missing cStatus::MsgOsdClear() to cDisplayChannel::~cDisplayChannel()
+ (thanks to Oliver Endriss).
diff --git a/menu.c b/menu.c
index be4227e7..d6548234 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.304 2004/05/23 09:47:14 kls Exp $
+ * $Id: menu.c 1.305 2004/05/23 10:35:04 kls Exp $
*/
#include "menu.h"
@@ -2491,6 +2491,7 @@ cDisplayChannel::cDisplayChannel(eKeys FirstKey)
cDisplayChannel::~cDisplayChannel()
{
delete displayChannel;
+ cStatus::MsgOsdClear();
}
void cDisplayChannel::DisplayChannel(void)