diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-25 10:54:51 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-25 10:54:51 +0100 |
commit | fdbf796b6b9dbe83c6874002c1e01dbac09f7eae (patch) | |
tree | 71abc2eac5e3bfb6674233ed6f4ac574a8a7125c /vdr.c | |
parent | 5ac41bf09175b48cf09606c1cd16bf0615ced837 (diff) | |
download | vdr-fdbf796b6b9dbe83c6874002c1e01dbac09f7eae.tar.gz vdr-fdbf796b6b9dbe83c6874002c1e01dbac09f7eae.tar.bz2 |
The new function cStatus::ChannelChange() can be implemented by plugins to be informed about changes to the parameters of a channel that may require a retune
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.tvdr.de * - * $Id: vdr.c 3.8 2014/01/16 11:25:03 kls Exp $ + * $Id: vdr.c 3.9 2014/01/25 10:47:39 kls Exp $ */ #include <getopt.h> @@ -60,6 +60,7 @@ #include "skinsttng.h" #include "sourceparams.h" #include "sources.h" +#include "status.h" #include "themes.h" #include "timers.h" #include "tools.h" @@ -924,6 +925,7 @@ int main(int argc, char *argv[]) } } } + cStatus::MsgChannelChange(Channel); } } Channels.Unlock(); |