1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Fixed setting time transponder to 0

This commit is contained in:
Klaus Schmidinger 2006-04-14 10:41:28 +02:00
parent 360a403f91
commit a27aafc74b

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menuitems.c 1.41 2006/04/14 10:39:40 kls Exp $
* $Id: menuitems.c 1.42 2006/04/14 10:41:28 kls Exp $
*/
#include "menuitems.h"
@ -622,6 +622,10 @@ eOSState cMenuEditTranItem::ProcessKey(eKeys Key)
*source = channel->Source();
*transponder = channel->Transponder();
}
else {
*source = 0;
*transponder = 0;
}
return state;
}