diff options
author | Andreas Mair <andreas@vdr-developer.org> | 2010-05-29 16:47:56 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2010-05-29 16:47:56 +0200 |
commit | 916da87bf4b739215aa921cda97a36b816e5ba41 (patch) | |
tree | e3e1f3baa811ba9e89de99736c9e69baef42fd1f /mymenucommands.c | |
parent | ab6811d93006be2338c9711b40d1d67533a094ca (diff) | |
download | vdr-plugin-extrecmenu-916da87bf4b739215aa921cda97a36b816e5ba41.tar.gz vdr-plugin-extrecmenu-916da87bf4b739215aa921cda97a36b816e5ba41.tar.bz2 |
Version 1.2-test1-am2bv1.2-test1-am2b
- fixed PES cutting using cutting queue (Reported by tomas @vdr-portal.de).
- fixed some gcc warnings and errors (Based on suggestions by Zzam @vdr-portal.de).
Diffstat (limited to 'mymenucommands.c')
-rw-r--r-- | mymenucommands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mymenucommands.c b/mymenucommands.c index 3c5099a..237c1f9 100644 --- a/mymenucommands.c +++ b/mymenucommands.c @@ -9,10 +9,10 @@ #include <vdr/interface.h> #include "mymenucommands.h" -myMenuCommands::myMenuCommands(const char *Title,cCommands *Commands,const char *Parameters):cOsdMenu(Title) +myMenuCommands::myMenuCommands(const char *Title,cCommands *_Commands,const char *Parameters):cOsdMenu(Title) { SetHasHotkeys(); - commands=Commands; + commands=_Commands; parameters=Parameters?strdup(Parameters):NULL; for(cCommand *command=commands->First();command;command=commands->Next(command)) Add(new cOsdItem(hk(command->Title()))); |