diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-13 18:37:21 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-13 18:37:21 +0000 |
commit | 2072c668df9ad48586fd2750713da0be742dda6d (patch) | |
tree | b6a8af74320fe0b4af845fdc7ec0fca40d88f02d /live.cpp | |
parent | 872af377d5d207b0292c4deb3ebdff09c116ea3d (diff) | |
download | vdr-plugin-live-2072c668df9ad48586fd2750713da0be742dda6d.tar.gz vdr-plugin-live-2072c668df9ad48586fd2750713da0be742dda6d.tar.bz2 |
- added service to switch channels by channel-id
Diffstat (limited to 'live.cpp')
-rw-r--r-- | live.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3,13 +3,14 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: live.cpp,v 1.10 2007/01/05 19:51:38 lordjaxom Exp $ + * $Id: live.cpp,v 1.11 2007/01/13 18:37:21 lordjaxom Exp $ */ #include <vdr/plugin.h> #include "i18n.h" #include "live.h" #include "setup.h" +#include "tasks.h" #include "thread.h" #include "timers.h" @@ -55,6 +56,7 @@ void Plugin::Stop(void) void Plugin::MainThreadHook(void) { LiveTimerManager().DoPendingWork(); + LiveTaskManager().DoScheduledWork(); } cString Plugin::Active(void) |